pax_global_header00006660000000000000000000000064135761625130014523gustar00rootroot0000000000000052 comment=1b78caedf2fdb95f3597490332d8211d13dbb05a fdm_materials-4.4.1/000077500000000000000000000000001357616251300143405ustar00rootroot00000000000000fdm_materials-4.4.1/.github/000077500000000000000000000000001357616251300157005ustar00rootroot00000000000000fdm_materials-4.4.1/.github/workflows/000077500000000000000000000000001357616251300177355ustar00rootroot00000000000000fdm_materials-4.4.1/.github/workflows/build.yml000066400000000000000000000030771357616251300215660ustar00rootroot00000000000000--- name: Build on: push: branches: - "**" - "!master" tags-ignore: "**" env: IMAGE_BASE: docker.pkg.github.com/${{ github.repository }} GITHUB_TOKEN: ${{ secrets.GitHub_PAT }} jobs: context: runs-on: ubuntu-latest steps: - name: Dump GitHub context env: GITHUB_CONTEXT: ${{ toJson(github) }} run: echo "$GITHUB_CONTEXT" - name: Dump job context env: JOB_CONTEXT: ${{ toJson(job) }} run: echo "$JOB_CONTEXT" - name: Dump steps context env: STEPS_CONTEXT: ${{ toJson(steps) }} run: echo "$STEPS_CONTEXT" - name: Dump runner context env: RUNNER_CONTEXT: ${{ toJson(runner) }} run: echo "$RUNNER_CONTEXT" - name: Dump strategy context env: STRATEGY_CONTEXT: ${{ toJson(strategy) }} run: echo "$STRATEGY_CONTEXT" - name: Dump matrix context env: MATRIX_CONTEXT: ${{ toJson(matrix) }} run: echo "$MATRIX_CONTEXT" build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: true # 'recursive' 'true' or 'false' token: ${{ secrets.GitHub_PAT }} # `GitHub_PAT` is a secret contains your PAT. - run: echo "${GITHUB_TOKEN}" | docker login -u stardust-c3po --password-stdin docker.pkg.github.com - run: docker run -i -u "$(id -u)" -v "$(pwd):/source" --rm -e CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED=ON" docker.pkg.github.com/ultimaker/print-cluster-jedi-scripts/print-cluster-jedi-scripts-cmake:latest fdm_materials-4.4.1/.github/workflows/cicd.yml000066400000000000000000000005451357616251300213660ustar00rootroot00000000000000--- name: CI/CD on: [push, pull_request] jobs: build: name: Validate runs-on: ubuntu-latest container: python:3.7-slim steps: - name: Checkout master uses: actions/checkout@v1.2.0 - name: Install lxml run: python -m pip install lxml==4.3.0 - name: run: python scripts/check_material_profiles_new_with_lxml.py fdm_materials-4.4.1/.github/workflows/release.yml000066400000000000000000000036241357616251300221050ustar00rootroot00000000000000--- name: Release on: push: tags: - "**jedi**" env: IMAGE_BASE: docker.pkg.github.com/${{ github.repository }} GITHUB_TOKEN: ${{ secrets.GitHub_PAT }} PACKAGE_REPO_GIT: https://ultimaker-package:${{ secrets.GitHub_PAT }}@github.com/Ultimaker/jedi-package-repository.git PACKAGE_REPO_BRANCH: "master master-next_som" GIT_AUTHOR_NAME: embedded GIT_AUTHOR_EMAIL: embedded@ultimaker.com GIT_COMMITTER_NAME: embedded GIT_COMMITTER_EMAIL: embedded@ultimaker.com EMAIL: embedded@ultimaker.com stages: - validate jobs: release: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 with: submodules: true # 'recursive' 'true' or 'false' token: ${{ secrets.GitHub_PAT }} # `GitHub_PAT` is a secret contains your PAT. - run: echo "${GITHUB_TOKEN}" | docker login -u fdm_materials-c3po --password-stdin docker.pkg.github.com - run: docker run -i -u "$(id -u)" -v "$(pwd):/source" --rm -e CMAKE_OPTIONS="-DCMAKE_INSTALL_PREFIX=/usr -DEMBEDDED=ON" registry.gitlab.com/ultimaker/stardust/print-cluster-jedi-scripts/print-cluster-jedi-scripts-cmake:latest - name: Get the version id: get_version run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} - name: Upload artifacts uses: actions/upload-artifact@v1 with: name: "fdm_materials-${{ steps.get_version.outputs.VERSION }}_all" path: "./fdm_materials-${{ steps.get_version.outputs.VERSION }}_all.deb" - run: docker run -i -u "$(id -u)" -v "$(pwd):/source" --rm -e PACKAGE_REPO_GIT -e PACKAGE_REPO_BRANCH -e RELEASE_VERSION="${GITHUB_REF/refs\/tags\//}" -e GIT_AUTHOR_NAME -e GIT_AUTHOR_EMAIL -e GIT_COMMITTER_NAME -e GIT_COMMITTER_EMAIL -e EMAIL -e ARTIFACT_PATH="/source/fdm_materials-${{ steps.get_version.outputs.VERSION }}_all" registry.gitlab.com/ultimaker/stardust/print-cluster-jedi-scripts/print-cluster-jedi-scripts-cmake:latest /push_artifacts.sh fdm_materials-4.4.1/.gitignore000066400000000000000000000002021357616251300163220ustar00rootroot00000000000000#IDEs .idea cura_build/* jedi_build/* build/* !cura_build/CMakeList.txt !jedi_build/CMakeList.txt !jedi_build/CPackConfig.cmake fdm_materials-4.4.1/CMakeLists.txt000066400000000000000000000030401357616251300170750ustar00rootroot00000000000000project(fdm_materials NONE) cmake_minimum_required(VERSION 2.8.12) include(CMakePackageConfigHelpers) option(EMBEDDED "Build for Ultimaker Embedded software" OFF) if(NOT EMBEDDED) set(INSTALL_PATH "share/cura/resources/materials" CACHE PATH "The path to install the materials to. Should ideally be relative to CMAKE_INSTALL_PREFIX" ) else() # Then we're cmaking for Jedi set(INSTALL_PATH "share/fdm_materials" CACHE STRING "Destination to install the materials to. Should be relative to CMAKE_INSTALL_PREFIX") if(IS_ABSOLUTE ${INSTALL_PATH}) set(INSTALL_PATH ${INSTALL_PATH}) else() set(INSTALL_PATH ${CMAKE_INSTALL_PREFIX}/${INSTALL_PATH}) endif() endif() file(GLOB _files *.fdm_material *.sig) # Determine version number find_package(Git) set(GIT_VERSION "unknown") if(GIT_FOUND) execute_process( WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} COMMAND ${GIT_EXECUTABLE} describe --tags --dirty OUTPUT_VARIABLE GIT_VERSION RESULT_VARIABLE GIT_RETURN_VALUE ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE) if(NOT GIT_RETURN_VALUE AND GIT_VERSION) string(REPLACE "/" "_" GIT_VERSION ${GIT_VERSION}) set(CPACK_PACKAGE_VERSION "${GIT_VERSION}") endif() message("Package version derived from git: ${GIT_VERSION}") endif() if (DEFINED ENV{GITHUB_ACTIONS}) set(CPACK_PACKAGE_VERSION "${GIT_VERSION}+$ENV{GITHUB_SHA}") endif() install(FILES ${_files} DESTINATION ${INSTALL_PATH}) include(CPackConfig.cmake) fdm_materials-4.4.1/CPackConfig.cmake000066400000000000000000000005531357616251300174540ustar00rootroot00000000000000set(CPACK_PACKAGE_VENDOR "Ultimaker") set(CPACK_PACKAGE_CONTACT "Ultimaker ") set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Ultimaker Embedded services") set(CPACK_PACKAGE_VERSION_MAJOR 9999) set(CPACK_PACKAGE_VERSION_MINOR 99) set(CPACK_PACKAGE_VERSION_PATCH 99) set(CPACK_GENERATOR "DEB") set(CPACK_DEBIAN_PACKAGE_ARCHITECTURE all) include(CPack) fdm_materials-4.4.1/Jenkinsfile000066400000000000000000000013661357616251300165320ustar00rootroot00000000000000node('linux && cura') { timeout(time: 5, unit: "MINUTES") { // Prepare building stage('Prepare') { // Ensure we start with a clean build directory. step([$class: 'WsCleanup']) // Checkout whatever sources are linked to this pipeline. checkout scm } // If any error occurs during building, we want to catch it and continue with the "finale" stage. catchError { // Perform sanity checks stage('Sanity Checks') { if (fileExists("scripts/check_material_profiles.py")) { sh "${env.CURA_ENVIRONMENT_PATH}/master/bin/python3 scripts/check_material_profiles.py" } } } } } fdm_materials-4.4.1/LICENSE000066400000000000000000000153771357616251300153620ustar00rootroot00000000000000Creative Commons Legal Code CC0 1.0 Universal CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED HEREUNDER. Statement of Purpose The laws of most jurisdictions throughout the world automatically confer exclusive Copyright and Related Rights (defined below) upon the creator and subsequent owner(s) (each and all, an "owner") of an original work of authorship and/or a database (each, a "Work"). Certain owners wish to permanently relinquish those rights to a Work for the purpose of contributing to a commons of creative, cultural and scientific works ("Commons") that the public can reliably and without fear of later claims of infringement build upon, modify, incorporate in other works, reuse and redistribute as freely as possible in any form whatsoever and for any purposes, including without limitation commercial purposes. These owners may contribute to the Commons to promote the ideal of a free culture and the further production of creative, cultural and scientific works, or to gain reputation or greater distribution for their Work in part through the use and efforts of others. For these and/or other purposes and motivations, and without any expectation of additional consideration or compensation, the person associating CC0 with a Work (the "Affirmer"), to the extent that he or she is an owner of Copyright and Related Rights in the Work, voluntarily elects to apply CC0 to the Work and publicly distribute the Work under its terms, with knowledge of his or her Copyright and Related Rights in the Work and the meaning and intended legal effect of CC0 on those rights. 1. Copyright and Related Rights. A Work made available under CC0 may be protected by copyright and related or neighboring rights ("Copyright and Related Rights"). Copyright and Related Rights include, but are not limited to, the following: i. the right to reproduce, adapt, distribute, perform, display, communicate, and translate a Work; ii. moral rights retained by the original author(s) and/or performer(s); iii. publicity and privacy rights pertaining to a person's image or likeness depicted in a Work; iv. rights protecting against unfair competition in regards to a Work, subject to the limitations in paragraph 4(a), below; v. rights protecting the extraction, dissemination, use and reuse of data in a Work; vi. database rights (such as those arising under Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, and under any national implementation thereof, including any amended or successor version of such directive); and vii. other similar, equivalent or corresponding rights throughout the world based on applicable law or treaty, and any national implementations thereof. 2. Waiver. To the greatest extent permitted by, but not in contravention of, applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and unconditionally waives, abandons, and surrenders all of Affirmer's Copyright and Related Rights and associated claims and causes of action, whether now known or unknown (including existing as well as future claims and causes of action), in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each member of the public at large and to the detriment of Affirmer's heirs and successors, fully intending that such Waiver shall not be subject to revocation, rescission, cancellation, termination, or any other legal or equitable action to disrupt the quiet enjoyment of the Work by the public as contemplated by Affirmer's express Statement of Purpose. 3. Public License Fallback. Should any part of the Waiver for any reason be judged legally invalid or ineffective under applicable law, then the Waiver shall be preserved to the maximum extent permitted taking into account Affirmer's express Statement of Purpose. In addition, to the extent the Waiver is so judged Affirmer hereby grants to each affected person a royalty-free, non transferable, non sublicensable, non exclusive, irrevocable and unconditional license to exercise Affirmer's Copyright and Related Rights in the Work (i) in all territories worldwide, (ii) for the maximum duration provided by applicable law or treaty (including future time extensions), (iii) in any current or future medium and for any number of copies, and (iv) for any purpose whatsoever, including without limitation commercial, advertising or promotional purposes (the "License"). The License shall be deemed effective as of the date CC0 was applied by Affirmer to the Work. Should any part of the License for any reason be judged legally invalid or ineffective under applicable law, such partial invalidity or ineffectiveness shall not invalidate the remainder of the License, and in such case Affirmer hereby affirms that he or she will not (i) exercise any of his or her remaining Copyright and Related Rights in the Work or (ii) assert any associated claims and causes of action with respect to the Work, in either case contrary to Affirmer's express Statement of Purpose. 4. Limitations and Disclaimers. a. No trademark or patent rights held by Affirmer are waived, abandoned, surrendered, licensed or otherwise affected by this document. b. Affirmer offers the Work as-is and makes no representations or warranties of any kind concerning the Work, express, implied, statutory or otherwise, including without limitation warranties of title, merchantability, fitness for a particular purpose, non infringement, or the absence of latent or other defects, accuracy, or the present or absence of errors, whether or not discoverable, all to the greatest extent permissible under applicable law. c. Affirmer disclaims responsibility for clearing rights of other persons that may apply to the Work or any use thereof, including without limitation any person's Copyright and Related Rights in the Work. Further, Affirmer disclaims responsibility for obtaining any necessary consents, permissions or other rights required for any use of the Work. d. Affirmer understands and acknowledges that Creative Commons is not a party to this document and has no duty or obligation with respect to this CC0 or use of the Work. fdm_materials-4.4.1/Vertex_Delta_ABS.xml.fdm_material000066400000000000000000000020271357616251300225610ustar00rootroot00000000000000 Velleman ABS Generic #ffc924 4edd8fce-0851-43e5-808a-970b4bfe8b10 4 1.75 1.24 225.0 0.0 3.0 250.0 0.0 150.0 36 fdm_materials-4.4.1/Vertex_Delta_PET.xml.fdm_material000066400000000000000000000017331357616251300226070ustar00rootroot00000000000000 Velleman PET Generic #ffc924 0e20a24a-3248-4b9f-96f9-69ee388abd0c 4 1.75 1.24 215.0 10.0 3.0 255.0 0.0 150.0 fdm_materials-4.4.1/Vertex_Delta_PLA.xml.fdm_material000066400000000000000000000017331357616251300225730ustar00rootroot00000000000000 Velleman PLA Generic #ffc924 8d2731c8-b209-4202-b5d0-0d2d57070736 4 1.75 1.24 190.0 100.0 3.0 200.0 0.0 30.0 fdm_materials-4.4.1/Vertex_Delta_PLA_Glitter.xml.fdm_material000066400000000000000000000017451357616251300242700ustar00rootroot00000000000000 Velleman PLA-Glitter Generic #ffc924 29e505c5-a092-4c4f-bf17-725b6c82fd42 1 1.75 1.24 195.0 100.0 3.0 210.0 0.0 30.0 fdm_materials-4.4.1/Vertex_Delta_PLA_Mat.xml.fdm_material000066400000000000000000000017351357616251300233760ustar00rootroot00000000000000 Velleman PLA-Mat Generic #ffc924 13256f8c-b72d-401d-afad-89a5b59eaac3 1 1.75 1.24 195.0 100.0 3.5 210.0 0.0 30.0 fdm_materials-4.4.1/Vertex_Delta_PLA_Satin.xml.fdm_material000066400000000000000000000017411357616251300237300ustar00rootroot00000000000000 Velleman PLA-Satin Generic #ffc924 8a73c724-a1d6-40ec-af71-17a6fbe9b019 1 1.75 1.24 195.0 100.0 3.0 220.0 0.0 30.0 fdm_materials-4.4.1/Vertex_Delta_PLA_Wood.xml.fdm_material000066400000000000000000000017361357616251300235660ustar00rootroot00000000000000 Velleman PLA-Wood Generic #ffc924 340127b7-2361-4d08-8cea-4a170a9bdbe7 1 1.75 1.24 195.0 75.0 5.0 210.0 0.0 50.0 fdm_materials-4.4.1/Vertex_Delta_TPU.xml.fdm_material000066400000000000000000000021151357616251300226220ustar00rootroot00000000000000 Velleman TPU Generic #ffc924 a5ab90e5-9f5d-445b-b0c5-5312dafa2e27 4 1.75 1.24 195.0 20.0 3.0 220.0 0.0 150.0 true fdm_materials-4.4.1/chromatik_pla.xml.fdm_material000066400000000000000000000015511357616251300223240ustar00rootroot00000000000000 Chromatik PLA Generic 69fd1f24-f411-470e-8158-9e5552f36147 1 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.74 205 fdm_materials-4.4.1/dsm_arnitel2045_175.xml.fdm_material000066400000000000000000000033761357616251300227260ustar00rootroot00000000000000 DSM TPC Generic fc67dfa2-7f71-4ca8-8ba5-dfe802fda22c 2 #ee51f8 1.10 1.75 215 50 160 40.0 160 20 50 215 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/dsm_novamid1070_175.xml.fdm_material000066400000000000000000000034061357616251300227140ustar00rootroot00000000000000 DSM PA copolymer Generic edcde954-ee11-4a23-9f11-56d2aa03284b 2 #f395f9 1.10 1.75 255 75 220 0.0 220 20 75 255 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/emotiontech_abs.xml.fdm_material000066400000000000000000000046021357616251300226520ustar00rootroot00000000000000 eMotionTech ABS Generic 6039cd0c-dff1-4c51-9849-1cce0161430b 14 #8cb219 1.03 1.75 2300 245 100 175 1.4 45 yes 240 1.3 yes 245 1.4 yes 250 1.5 fdm_materials-4.4.1/emotiontech_asax.xml.fdm_material000066400000000000000000000034471357616251300230470ustar00rootroot00000000000000 eMotionTech ASA-X Generic 94ec3ed1-27b4-4eb8-9e6a-783a47c168fd 14 #159499 1.11 1.75 2300 245 100 175 1.3 45 yes 235 1.3 yes 240 1.4 yes 245 1.5 fdm_materials-4.4.1/emotiontech_hips.xml.fdm_material000066400000000000000000000045431357616251300230540ustar00rootroot00000000000000 eMotionTech HIPS Generic 64046874-b7c1-45c2-befa-db2d1a6dec3d 14 #D5D8DC Good bonding to styrene based materials, d-limonene soluble 1.19 1.75 900 245 100 1.3 yes 240 1.3 yes 245 1.4 yes 250 1.5 fdm_materials-4.4.1/emotiontech_petg.xml.fdm_material000066400000000000000000000046021357616251300230440ustar00rootroot00000000000000 eMotionTech PETG Generic f4176e46-e0af-4379-9851-3e295b2db713 14 #f3a112 1.27 1.75 2300 240 70 150 1.7 30 yes 240 1.9 yes 243 1.9 yes 245 2.0 fdm_materials-4.4.1/emotiontech_pla.xml.fdm_material000066400000000000000000000045671357616251300226730ustar00rootroot00000000000000 eMotionTech PLA Generic 99b895c2-5c41-48cc-b3b9-d9113e8c6a45 14 #ffc924 1.24 1.75 2300 200 60 150 1.4 0 yes 205 1.3 yes 210 1.4 yes 215 1.4 fdm_materials-4.4.1/emotiontech_pva-m.xml.fdm_material000066400000000000000000000045701357616251300231310ustar00rootroot00000000000000 eMotionTech PVA Generic ee26b749-9c0a-4b8f-885e-db92fcdd23da 14 #D5D8DC Good bonding to PLA, PET-G and ABS, thermally much more stable than a regular PVA 1.22 1.75 750 215 75 1.3 yes 205 1.3 yes 210 1.3 yes 213 1.3 fdm_materials-4.4.1/emotiontech_pva-oks.xml.fdm_material000066400000000000000000000044741357616251300234740ustar00rootroot00000000000000 eMotionTech PVA Generic ea8a4d2d-dc52-454a-a1f3-60f50cd37df7 14 #D5D8DC Good bonding to PLA 1.23 1.75 750 210 75 1.3 yes 200 1.3 yes 200 1.3 yes 205 1.3 fdm_materials-4.4.1/emotiontech_pva-s.xml.fdm_material000066400000000000000000000045141357616251300231350ustar00rootroot00000000000000 eMotionTech PVA Generic bc356ea0-1791-479a-9272-40d228d0269a 14 #D5D8DC Good bonding styrene based materials 1.19 1.75 750 245 100 1.3 yes 240 1.3 yes 240 1.4 yes 245 1.4 fdm_materials-4.4.1/emotiontech_tpu98a.xml.fdm_material000066400000000000000000000046451357616251300232460ustar00rootroot00000000000000 eMotionTech TPU Generic a63e93ac-3b52-402f-bc07-a6828abb27a9 14 #B22744 1.16 1.75 2300 235 60 175 1.3 0 yes 220 1.3 yes 225 1.4 yes 230 1.4 fdm_materials-4.4.1/fabtotum_abs.xml.fdm_material000066400000000000000000000016671357616251300221650ustar00rootroot00000000000000 FABtotum ABS Generic 956b9054-e5e8-4852-8f5b-1332b73fcd07 3 #8CB219 FABtotum generic ABS profile. Recommended nozzle temperature: 250...260C, bed temperature: 90...100C, layer fan: off...50%, adhesion type: raft. 1.1 1.75 250.0 95.0 36 fdm_materials-4.4.1/fabtotum_nylon.xml.fdm_material000066400000000000000000000020471357616251300225500ustar00rootroot00000000000000 FABtotum Nylon Generic 68c674d6-1289-4a44-8d69-e8a2b1a49855 4 #3DF266 FABtotum generic Nylon profile. Recommended nozzle temperature: 230...240C, bed temperature: 80...90C, layer fan: off, adhesion type: raft. 1.14 1.75 240.0 90.0 true 35 fdm_materials-4.4.1/fabtotum_pla.xml.fdm_material000066400000000000000000000015641357616251300221700ustar00rootroot00000000000000 FABtotum PLA Generic 2adcb50b-94b5-4393-bcc8-e6d4e45d8a87 2 #FFC924 FABtotum generic PLA profile. Recommended nozzle temperature: 190...200C, bed temperature: 40...50C, layer fan: on, adhesion type: skirt. 1.75 1.24 200.0 40.0 fdm_materials-4.4.1/fabtotum_tpu.xml.fdm_material000066400000000000000000000017441357616251300222240ustar00rootroot00000000000000 FABtotum TPU Generic 97e6aaf1-0da2-47f8-a473-16b8b485bcf5 3 #B22744 FABtotum TPU Black profile. Recommended nozzle temperature: 210...220C, bed temperature: 40...50C, layer fan: on, adhesion type: skirt. 1.24 1.75 220.0 40.0 true fdm_materials-4.4.1/fiberlogy_hd_pla.xml.fdm_material000066400000000000000000000011451357616251300227770ustar00rootroot00000000000000 Fiberlogy HD PLA Generic 78f8b7d3-e129-4ba3-bdb1-1c9eed8a923f 1 #dba500 1.24 1.74 210 fdm_materials-4.4.1/filo3d_pla.xml.fdm_material000066400000000000000000000015461357616251300215270ustar00rootroot00000000000000 Filo3D PLA Generic cf078efd-d15d-4e6d-8f00-401b5e3f6d19 1 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 205 fdm_materials-4.4.1/filo3d_pla_green.xml.fdm_material000066400000000000000000000015441357616251300227050ustar00rootroot00000000000000 Filo3D PLA Green 6a738af3-55ce-4467-b7e2-231a2db58bce 1 #61993b Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 200 fdm_materials-4.4.1/filo3d_pla_red.xml.fdm_material000066400000000000000000000015421357616251300223550ustar00rootroot00000000000000 Filo3D PLA Red 92652f77-93fb-4139-abca-30658ec9e0f9 1 #bb1e10 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 220 fdm_materials-4.4.1/generic_abs.xml.fdm_material000066400000000000000000000143241357616251300217520ustar00rootroot00000000000000 Generic ABS Generic 60636bb4-518f-42e7-8237-fe77b194ebe0 20 #8cb219 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. 1.10 2.85 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/generic_abs_175.xml.fdm_material000066400000000000000000000122131357616251300223410ustar00rootroot00000000000000 Generic ABS Generic 2780b345-577b-4a24-a2c5-12e6aad3e690 7 #8cb219 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. 1.10 1.75 230 80 200 0 70 36 0.0 160 40 115 255 yes 1.0 yes 1.0 yes 1.5 0.0 160 40 115 255 yes 1.0 yes 1.0 yes 1.5 0.0 160 40 0.8 70 250 0 200 45 5 240 80 fdm_materials-4.4.1/generic_bam.xml.fdm_material000066400000000000000000000113411357616251300217400ustar00rootroot00000000000000 Generic Breakaway Generic 7e6207c4-22ff-441a-b261-ff89f166d6a0 22 #F1ECE1 Breakaway Material. Breakaway is a matching support material for PLA, ABS, CPE, CPE+, and Nylon Use the same temperatures and adhesion method as your build material(s). 1.22 2.85 -20 10 -10 1 230 -50 25 95 300 0.97 0.5 0.5 60 20 225 60 100 24 1.0 0.8 0 100 no no yes no 100 no no yes no 100 no no yes no yes no yes no fdm_materials-4.4.1/generic_cffcpe.xml.fdm_material000066400000000000000000000112731357616251300224330ustar00rootroot00000000000000 Generic CFF CPE Generic f8e496d6-7599-4015-9fac-c7ce53f6633c 14 #212F3D This is the baseline profile for Carbon Fiber Filled Copolyesters for the Print Profile Assistant. This profile can also be used for other base materials (ABS, PP, etc) Use glue. 1.35 2.85 -8 25 0 2 250 -50 25 145 300 0.94 0.5 0.5 60 20 265 60 175 0 70 true 37 1.0 0.8 0 no no no no no yes 50 6.5 no no no no no yes 50 6.5 yes no yes yes fdm_materials-4.4.1/generic_cffpa.xml.fdm_material000066400000000000000000000110521357616251300222570ustar00rootroot00000000000000 Generic CFF PA Generic bd66b243-9d50-4e12-bfc3-51c874fca16a 13 #212F3D This is the baseline profile for Carbon Fiber Filled Polyamides for the Print Profile Assistant. Use glue. 1.35 2.85 -8 25 0 2 250 -50 25 145 300 0.94 0.5 0.5 60 20 265 70 175 2 100 true 35 1.0 0.8 0 no no no no no yes 50 6.5 no no no no no yes 1 6.5 yes no yes yes fdm_materials-4.4.1/generic_cpe.xml.fdm_material000066400000000000000000000143221357616251300217520ustar00rootroot00000000000000 Generic CPE Generic 12f41353-1a33-415e-8b4f-a775a6c70cc6 23 #159499 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. 1.27 2.85 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/generic_cpe_175.xml.fdm_material000066400000000000000000000022611357616251300223450ustar00rootroot00000000000000 Generic CPE Generic da1872c1-b991-4795-80ad-bdac0f131726 4 #159499 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. 1.27 1.75 240 70 175 0 70 37 fdm_materials-4.4.1/generic_cpe_plus.xml.fdm_material000066400000000000000000000142051357616251300230150ustar00rootroot00000000000000 Generic CPE+ Generic e2409626-b5a0-4025-b73e-b58070219259 21 #3633F2 Chemically resistant and tough. CPE+ is chemically inert, tough, dimensionally stable and handles temperatures up to 100ºC. Use glue for small prints. An adhesion sheet is recommended for larger prints. 1.18 2.85 -4 5 -16 2 260 -50 25 105 300 0.98245614 0.5 0.5 60 20 260 107 175 0 65 0.9 41 1.0 0.8 0 yes no no yes 7 1 yes 8 no yes 110 100 7 40 1 yes 110 8 no yes 110 100 8 40 1 yes 110 8 40 8 no yes yes yes fdm_materials-4.4.1/generic_gffcpe.xml.fdm_material000066400000000000000000000112711357616251300224350ustar00rootroot00000000000000 Generic GFF CPE Generic d4b786bb-e5d2-481b-b3ab-0be976d36af8 14 #D5D8DC This is the baseline profile for Glass Fiber Filled Copolyesters for the Print Profile Assistant. This profile can also be used for other base materials (ABS, PP, etc) Use glue. 1.35 2.85 -8 25 0 2 250 -50 25 145 300 0.94 0.5 0.5 60 20 265 60 175 0 70 true 37 1.0 0.8 0 no no no no no yes 50 6.5 no no no no no yes 50 6.5 yes no yes yes fdm_materials-4.4.1/generic_gffpa.xml.fdm_material000066400000000000000000000110501357616251300222610ustar00rootroot00000000000000 Generic GFF PA Generic 837cf11b-6b1e-48dc-94dc-4a2b4888648e 13 #D5D8DC This is the baseline profile for Glass Fiber Filled Polyamides for the Print Profile Assistant. Use glue. 1.35 2.85 -8 25 0 2 250 -50 25 145 300 0.94 0.5 0.5 60 20 265 70 175 2 100 true 35 1.0 0.8 0 no no no no no yes 50 6.5 no no no no no yes 1 6.5 yes no yes yes fdm_materials-4.4.1/generic_hips.xml.fdm_material000066400000000000000000000035121357616251300221450ustar00rootroot00000000000000 Generic HIPS Generic b6f76172-bb0f-4326-bdbc-ee8f0e84b283 7 #12f3e0 1.24 2.85 -8 25 0 2 250 -20 25 145 300 0.95 0.5 0.5 60 20 225 85 160 1.0 0.8 0 fdm_materials-4.4.1/generic_hips_175.xml.fdm_material000066400000000000000000000035041357616251300225420ustar00rootroot00000000000000 Generic HIPS Generic a468d86a-220c-47eb-99a5-bbb47e514eb0 2 #12f3e0 1.24 1.75 215 60 160 0.0 160 40 85 225 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_nylon.xml.fdm_material000066400000000000000000000142631357616251300223460ustar00rootroot00000000000000 Generic Nylon Generic 28fb4162-db74-49e1-9008-d05f1e8bef5c 20 #3DF266 Nylon is strong, abrasion-resistant, durable and engineered for low moisture sensitivity. Use glue. 1.14 2.85 -8 25 0 2 250 -50 25 145 300 0.95 0.5 0.5 60 20 245 60 175 8 25 2 100 true 35 1.0 0.8 0 40 yes 230 100 6.5 yes yes 45 40 yes 230 100 6.5 yes 70 yes 70 45 40 yes 230 100 6.5 yes 70 8 yes 70 8 45 yes yes no no fdm_materials-4.4.1/generic_nylon_175.xml.fdm_material000066400000000000000000000045661357616251300227470ustar00rootroot00000000000000 Generic Nylon Generic 283d439a-3490-4481-920c-c51d8cdecf9c 5 #3DF266 Nylon is strong, abrasion-resistant, durable and engineered for low moisture sensitivity. Use glue. 1.14 1.75 245 60 175 8 25 2 100 true 35 0.0 160 40 60 230 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_pc.xml.fdm_material000066400000000000000000000163461357616251300216150ustar00rootroot00000000000000 Generic PC Generic 98c05714-bf4e-4455-ba27-57d74fe331e4 21 #F29030 Strong, tough and temperature resistant. PC offers a great print quality, heat resistance up to 110ºC, mechanical strength and toughness. Use glue for small prints. An adhesion sheet is recommended for larger prints. Set your print speed to a low value (10mm/sec) to get better layer bonding. 1.19 2.85 -4 5 -16 2 275 -50 25 105 300 0.94 0.5 0.5 60 20 270 107 175 0 65 0.7 41 1.0 0.8 0 yes yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 8 5 no yes yes yes 0.0 160 40 135 245 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_pc_175.xml.fdm_material000066400000000000000000000043511357616251300222020ustar00rootroot00000000000000 Generic PC Generic 62414577-94d1-490d-b1e4-7ef3ec40db02 4 #F29030 Strong, tough and temperature resistant. PC offers a great print quality, heat resistance up to 110ºC, mechanical strength and toughness. Use glue for small prints. An adhesion sheet is recommended for larger prints. Set your print speed to a low value (10mm/sec) to get better layer bonding. 1.19 1.75 270 107 175 41 0.0 160 40 135 245 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_petg.xml.fdm_material000066400000000000000000000040371357616251300221440ustar00rootroot00000000000000 Generic PETG Generic 1cbfaeb3-1906-4b26-b2e7-6f777a8c197a 6 #ff5086 Generic PETG profile. The data in this file may not be correct for your specific machine. Set your prime speed to a low value (8mm/sec) 1.38 2.85 -4 5 -16 2 245 -50 25 75 300 0.95 0.5 0.5 60 20 215 70 120 1.0 0.8 0 fdm_materials-4.4.1/generic_petg_175.xml.fdm_material000066400000000000000000000070171357616251300225410ustar00rootroot00000000000000 Generic PETG Generic 69386c85-5b6c-421a-bec5-aeb1fb33f060 3 #f3a112 Generic PETG profile. The data in this file may not be correct for your specific machine. Set your prime speed to a low value (8mm/sec) 1.38 1.75 215 70 120 0.0 120 40 85 215 yes 1.0 yes 1.0 yes 1.5 50 200 45 5 240 80 fdm_materials-4.4.1/generic_pla.xml.fdm_material000066400000000000000000000156031357616251300217620ustar00rootroot00000000000000 Generic PLA Generic 506c9f0d-e3aa-4bd4-b2d2-23e2425b1aa9 20 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 2.85 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 true yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/generic_pla_175.xml.fdm_material000066400000000000000000000142541357616251300223570ustar00rootroot00000000000000 Generic PLA Generic 0ff92885-617b-4144-a03c-9989872454bc 7 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 200 60 175 0 100 28 40.0 160 40 43 190 yes 1.0 yes 1.0 yes 1.5 40.0 160 40 43 190 yes 1.0 yes 1.0 yes 1.5 100 180 40 1.5 200 100 180 40 1.5 200 100 180 40 0.8 200 100 180 45 5 200 50 210 55 fdm_materials-4.4.1/generic_pp.xml.fdm_material000066400000000000000000000144711357616251300216270ustar00rootroot00000000000000 Generic PP Generic aa22e9c7-421f-4745-afc2-81851694394a 22 #85f9de Fatigue and chemical resistant. Polypropylene offers excellent temperature, chemical and fatigue resistance. Its toughness and low friction make it a perfect choice for prototyping and creating durable end-use models. Adhesion sheets are required. 2.85 0.89 -8 40 -8 17 220 -50 25 105 300 1.016702977 0.5 0.5 60 20 220 100 185 20 35 2.5 true 41 1.0 0.8 0 8 no yes 85 100 6.5 25 yes 85 yes 7 10 85 yes 100 6.5 25 yes yes 7 10 85 yes 100 6.5 25 yes yes 8 10 no yes yes yes fdm_materials-4.4.1/generic_pva.xml.fdm_material000066400000000000000000000152001357616251300217650ustar00rootroot00000000000000 Generic PVA Generic 86a89ceb-4159-47f6-ab97-e9953803d70f 22 #a32bcc Water soluble support material. PVA is a matching support material for PLA, CPE and Nylon. Use the same temperatures and adhesion method as your build material(s). 1.23 2.85 -2 20 -2 20 225 -50 50 170 60 0.95 0.5 0.5 60 20 215 60 175 true 35 1.0 0.8 0 no no no no yes yes no no no no yes yes no no no yes yes no yes yes no no 0.0 160 40 50 205 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_pva_175.xml.fdm_material000066400000000000000000000041411357616251300223630ustar00rootroot00000000000000 Generic PVA Generic a4255da2-cb2a-4042-be49-4a83957a2f9a 5 #a32bcc Water soluble support material. PVA is a matching support material for PLA, CPE and Nylon. Use the same temperatures and adhesion method as your build material(s). 1.23 1.75 215 175 true 0.0 160 40 50 205 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/generic_tough_pla.xml.fdm_material000066400000000000000000000124531357616251300231700ustar00rootroot00000000000000 Generic Tough PLA Generic 9d5d2d7c-4e77-441c-85a0-e9eefd4aa68c 14 #ffc9f0 Technical PLA material with toughness similar to ABS. Ideal for reliably printing functional prototypes and tooling at larger sizes, Tough PLA offers the same safe and easy use as regular PLA. Print on bare glass. Use tape for cold build plates. 1.24 2.85 -4 5 -16 2 230 -50 25 55 300 0.940860215 0.5 0.5 60 20 225 60 175 0 100 24 1.0 0.8 0 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/generic_tpu.xml.fdm_material000066400000000000000000000140611357616251300220130ustar00rootroot00000000000000 Generic TPU 95A Generic 1d52b2be-a3a2-41de-a8b1-3bcdb5618695 19 #B22744 Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. 1.22 2.85 -6.5 25 0 2 223 -50 25 195 300 1.049475262 0.5 0.5 60 20 228 0 175 3 100 true 27 1.0 0.8 0 yes no 223 no yes 20 35 yes 45 50 223 no yes 20 35 yes 45 50 223 no yes 20 8 35 yes 8 45 50 yes yes yes no fdm_materials-4.4.1/generic_tpu_175.xml.fdm_material000066400000000000000000000025671357616251300224170ustar00rootroot00000000000000 Generic TPU 95A Generic 19baa6a9-94ff-478b-b4a1-8157b74358d2 11 #B22744 Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. 1.22 1.75 228 0 175 3 100 true 27 fdm_materials-4.4.1/imade3d_petg_175.xml.fdm_material000066400000000000000000000045571357616251300224410ustar00rootroot00000000000000 IMADE3D PETG Generic 255d0c5b-25c8-46ff-ad71-6d389790f50a 2 #eb006a PETG is strong and chemically resistant. A great material for mechanical applications. It's more sticky, oozy, and moderately hydrophilic. You must keep it dry! Hot bed is more or less a necessity! Expect slight warping on cold bed. Use blue tape with cold bed and a bare PEI sheet with hot bed. 1.38 1.75 230 65 120 yes 1.7 40 95 50 30 yes 1.7 40 95 50 30 fdm_materials-4.4.1/imade3d_pla_175.xml.fdm_material000066400000000000000000000044341357616251300222500ustar00rootroot00000000000000 IMADE3D PLA Generic e7cda2de-0ad6-441e-9340-6d408c98def2 3 #a5da00 PLA is ideal for fast and reliable printing. Use blue tape with cold bed and a bare PEI sheet with hot bed. 1.24 1.75 210 55 175 0 100 yes 1.3 40 95 100 80 yes 1.3 40 95 100 80 fdm_materials-4.4.1/innofill_innoflex60_175.xml.fdm_material000066400000000000000000000015121357616251300237620ustar00rootroot00000000000000 Innofill Innoflex 60 Generic 093c0407-a7ab-4772-a2a1-4c52677f11d3 3 #ecece7 Shore-A hardness of 60. Suitable for applications that require flexibility. 1.23 1.75 220 true fdm_materials-4.4.1/leapfrog_abs_natural.xml.fdm_material000066400000000000000000000032351357616251300236620ustar00rootroot00000000000000 Leapfrog ABS Natural Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 100ºC. 0e720dc6-45c4-4f6e-aa55-86d632005fe5 3 ABS can be printed on a BuildTak sticker. Make sure the sticker is clean and free of debris. DO NOT use heavy duty solvents, such as acetone, to clean it, nothing stronger than rubbing alcohol. https://www.lpfrg.com/products/abs-filament/ #E9E6E6 1.04 1.75 90.0 230 230 100 yes yes fdm_materials-4.4.1/leapfrog_epla_natural.xml.fdm_material000066400000000000000000000032511357616251300240340ustar00rootroot00000000000000 Leapfrog EPLA Natural Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. 98d4d76c-3b31-46be-979b-72166fce5938 3 EPLA can be printed on a BuildTak sticker. Make sure the sticker is clean and free of debris. DO NOT use heavy duty solvents, such as acetone, to clean it, nothing stronger than rubbing alcohol. https://www.lpfrg.com/products/engineering-pla-filament #E9E6E6 1.24 1.75 40.0 210 210 100 yes yes fdm_materials-4.4.1/leapfrog_pva_natural.xml.fdm_material000066400000000000000000000027751357616251300237130ustar00rootroot00000000000000 Leapfrog PVA Natural Water soluble support material. PVA is a matching support material for PLA, EPLA and Nylon. 570022e7-e038-40f0-af85-98f204cc558d 4 Use the same temperatures and adhesion method as your build material(s). https://www.lpfrg.com/products/scaffold-filament/ #737577 1.19 1.75 45.0 215 215 100 yes yes fdm_materials-4.4.1/octofiber_pla.xml.fdm_material000066400000000000000000000015511357616251300223170ustar00rootroot00000000000000 OctoFiber PLA Generic f7aaa835-b1ca-44b1-a35a-746031d3076f 1 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.74 210 fdm_materials-4.4.1/polyflex_pla.xml.fdm_material000066400000000000000000000012061357616251300222020ustar00rootroot00000000000000 Polymaker PLA Generic 88924e7b-a124-418f-a9b5-9fa56dbc47a3 1 #ffc924 1.24 1.75 230 fdm_materials-4.4.1/polymax_pla.xml.fdm_material000066400000000000000000000016141357616251300220340ustar00rootroot00000000000000 Polymaker PLA Generic 4cf5cf01-76b2-43d9-93f0-3b713d5730a8 1 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 210 fdm_materials-4.4.1/polyplus_pla.xml.fdm_material000066400000000000000000000016151357616251300222330ustar00rootroot00000000000000 Polymaker PLA Generic 5b4745da-5b2e-4f3c-bd6c-3d760b9aaef8 1 #ffc924 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. 1.24 1.75 210 fdm_materials-4.4.1/polywood_pla.xml.fdm_material000066400000000000000000000012061357616251300222140ustar00rootroot00000000000000 Polymaker PLA Generic adda5a78-f1e8-42e5-8837-6d6e6297dfa9 1 #ffeecc 1.24 1.75 210 fdm_materials-4.4.1/scripts/000077500000000000000000000000001357616251300160275ustar00rootroot00000000000000fdm_materials-4.4.1/scripts/check_material_profiles.py000077500000000000000000000060371357616251300232500ustar00rootroot00000000000000# This script is dedicated to the public domain under the terms of the CC0 license. from collections import OrderedDict import os import sys import re class MaterialProfilesValidator: def __init__(self, root_dir: str): self._repo_dir = os.path.abspath(root_dir) self._materials_dir = self._repo_dir self._guid_pattern = re.compile(r".*") def _get_guid(self, content: str) -> str: guid = None for line in content.splitlines(): line = line.strip() if self._guid_pattern.match(line): guid = line.strip("").strip("") break return guid def get_materials_dir(self, dirpath: str): for root_dir, dirnames, filenames in os.walk(dirpath): has_materials_file = any(fn.endswith(".xml.fdm_material") for fn in filenames) if not has_materials_file: for dirname in dirnames: full_dir_path = os.path.join(root_dir, dirname) return self.get_materials_dir(full_dir_path) return dirpath ## Validates the preset settings files and returns ``True`` or ``False`` # indicating whether there are invalid files. def validate(self) -> bool: # parse the definition file guid_dict = OrderedDict() materials_dir = self.get_materials_dir(self._materials_dir) # go through all the preset settings files for _, _, filenames in os.walk(materials_dir): for filename in filenames: file_path = os.path.join(materials_dir, filename) if not filename.endswith(".xml.fdm_material"): continue with open(file_path, "r", encoding = "utf-8") as f: content = f.read() guid = self._get_guid(content) if guid not in guid_dict: guid_dict[guid] = [] item_list = guid_dict[guid] item_list.append({"file_name": filename, "file_path": file_path}) break has_invalid_files = False for guid, file_item_list in guid_dict.items(): if len(file_item_list) <= 1: continue has_invalid_files = True if guid is not None: print("-> The following files contain the same GUID [%s]:" % guid) else: print("-> The following files DO NOT contain any GUID:") for file_item in file_item_list: print(" -- [%s]" % file_item["file_name"]) print("-> PLEASE make sure to generate unique GUIDs for each material.") return not has_invalid_files if __name__ == "__main__": script_dir = os.path.dirname(os.path.realpath(__file__)) root_dir = os.path.abspath(os.path.join(script_dir, "..")) validator = MaterialProfilesValidator(root_dir) is_everything_validate = validator.validate() ret_code = 0 if is_everything_validate else 1 sys.exit(ret_code) fdm_materials-4.4.1/scripts/check_material_profiles_new_with_lxml.py000077500000000000000000000153261357616251300262110ustar00rootroot00000000000000#!/usr/bin/env python3 # This script is dedicated to the public domain under the terms of the CC0 license. import os import sys import re from typing import Dict, Optional, List from lxml import etree ## This is a material profile validator that works with the lxml library. # # This version is currently unused on our CI server because it was difficult # to install lxml on that server. We store it here only as a back-up for when # we migrate to a different CI system. class MaterialProfilesValidator: __namespaces = { "um": "http://www.ultimaker.com/material", "cura": "http://www.ultimaker.com/cura", } def __init__(self) -> None: self._guid_pattern = re.compile(r".*") def _getGuid(self, content: str) -> str: guid = None for line in content.splitlines(): line = line.strip() if self._guid_pattern.match(line): guid = line.strip("").strip("") break return guid def _getMaterialsDir(self, dirpath: str) -> str: for root_dir, dirnames, filenames in os.walk(dirpath): has_materials_file = any(fn.endswith(".xml.fdm_material") for fn in filenames) if not has_materials_file: for dirname in dirnames: full_dir_path = os.path.join(root_dir, dirname) return self._getMaterialsDir(full_dir_path) return dirpath # Find all material files in a given directory. # This returns a dictionary with filename as keys and it's loaded content as value. def _getAllMaterialsContentsInDir(self, directory: str) -> Dict[str, Dict[str, str]]: result = {} # type: Dict[str, Dict[str, str]] for _, _, filenames in os.walk(directory): for filename in filenames: file_path = os.path.join(directory, filename) if not filename.endswith(".xml.fdm_material"): continue result[filename] = {"content": "", "error": ""} try: with open(file_path, "r", encoding = "utf-8") as f: result[filename]["content"] = f.read() except Exception as e: print("Failed to read file [%s] : %s", filename, e) result[filename]["error"] = str(e) break return result # Gets the material brand name from the given lxml.etree root node. Return None if the brand cannot be found, # otherwise the brand text. def _getMaterialBrandName(self, root_node: "etree.Element") -> Optional[str]: node = root_node.xpath("./um:metadata/um:name/um:brand", namespaces = self.__namespaces) if not node: return None return node[0].text def validateAll(self, repo_root_dir: str) -> bool: repo_root_dir = os.path.abspath(repo_root_dir) materials_dir = self._getMaterialsDir(repo_root_dir) fdmmaterial_xsd_file_path = os.path.join(repo_root_dir, "scripts", "fdmmaterial.xsd") material_content_dict = self._getAllMaterialsContentsInDir(materials_dir) # Store all the guid's linked with their filename. This is later used to find out if there are duplicate guids. guid_dict = {} # type: Dict[str, List[str]] xmlschema_doc = etree.parse(fdmmaterial_xsd_file_path) xmlschema = etree.XMLSchema(xmlschema_doc) has_invalid_files = False for file_name, file_info_dict in material_content_dict.items(): # Show error message if the file failed to load if len(file_info_dict["error"]) > 0: print("{file_name} failed to load, error: {error}".format(file_name = file_name, error = file_info_dict["error"])) has_invalid_files = True continue material_content = file_info_dict["content"] try: xml_doc = etree.fromstring(material_content.encode()) except etree.XMLSyntaxError as e: print("{file_name} contains XML syntax error".format(file_name = file_name)) print(e) has_invalid_files = True continue # Validate the file content with the XSD file. guid = self._getGuid(material_content) if guid not in guid_dict: guid_dict[guid] = [] guid_dict[guid].append(file_name) try: xmlschema.assertValid(xml_doc) except etree.DocumentInvalid as e: has_invalid_files = True print("{file_name} is not a valid fdm material".format(file_name = file_name)) print(e) continue # Make sure that only the material files such as "generic_" can have branch "Generic". brand = self._getMaterialBrandName(xml_doc) if brand is None: has_invalid_files = True print("{file_name} Could not find ".format(file_name = file_name)) continue if len(brand) == 0: has_invalid_files = True print("{file_name} contains an empty string for ".format(file_name = file_name)) continue if brand.lower() == "generic" and not file_name.lower().startswith("generic_"): has_invalid_files = True print("{file_name} has brand [{brand}] but only material files named as [generic*] can have brand [Generic]".format( file_name = file_name, brand = brand)) continue # Check for duplicate GUIDs for guid, file_item_list in guid_dict.items(): if len(file_item_list) <= 1: continue has_invalid_files = True if guid is not None: print("-> The following files contain the same GUID [%s]:" % guid) else: print("-> The following files DO NOT contain any GUID:") for file_item in file_item_list: print(" -- [%s]" % file_item) print("-> PLEASE make sure to generate unique GUIDs for each material.") return not has_invalid_files def main(): script_dir = os.path.dirname(os.path.realpath(__file__)) root_dir = os.path.abspath(os.path.join(script_dir, "..")) validator = MaterialProfilesValidator() is_everything_validated = validator.validateAll(root_dir) if is_everything_validated: print("All material profiles seem valid.") ret_code = 0 if is_everything_validated else 1 sys.exit(ret_code) if __name__ == "__main__": main() fdm_materials-4.4.1/scripts/fdmmaterial.xsd000066400000000000000000000317311357616251300210410ustar00rootroot00000000000000 fdm_materials-4.4.1/scripts/update_version_by_one.py000077500000000000000000000013001357616251300227600ustar00rootroot00000000000000#!/usr/bin/env python import os import sys if __name__ == '__main__': for filename in sys.argv[1:]: with open(filename, 'r', encoding='utf-8') as f: lines = f.readlines() for i, line in enumerate(lines): if "" in line.strip() and "" in line.strip(): idx = line.find("") + len("") idx2 = line.find("") num = int(line[idx:idx2]) num += 1 new_line = line[:idx] + str(num) + line[idx2:] lines[i] = new_line break with open(filename, 'w', encoding='utf-8') as f: f.writelines(lines) fdm_materials-4.4.1/structur3d_dap100silicone.xml.fdm_material000066400000000000000000000043501357616251300244240ustar00rootroot00000000000000 Structur3d Silicone Clear Print on wax paper. Use tape to affix wax paper to bed. #057ec7 13 9bce7bd3-53fd-467a-8b92-0d70720683d9 Safe and reliable silicone printing. DAP 100% Silicone is ideal for the printing of parts and prototypes with flexibility, compressibility, as well as chemical and temperature resistance. Cure time is several minutes to hours. 3.175 1 0 0.0 100 0.0 0.0 0.0 0.0 no yes yes yes yes yes yes yes yes fdm_materials-4.4.1/tizyx_abs.xml.fdm_material000066400000000000000000000045041357616251300215240ustar00rootroot00000000000000 TiZYX ABS Generic 4 #0097e8 ae03b4fd-2aa6-4957-aaea-b7ca0bbf0370 Use glue, to avoid chipping of the glass. Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. 1.75 1.10 235.0 200 10.0 95.0 45 3 50 90 230 160 0.0 40 4.0 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/tizyx_flex.xml.fdm_material000066400000000000000000000045461357616251300217230ustar00rootroot00000000000000 TiZYX FLEX Generic f42acc2b-f5b0-467c-8fb5-bd02005dc586 Easily peeled off with a flexible build plate. Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. #FF55FF 3 1.75 1.24 4 210.0 30 210.0 60 1.0 185 40.0 40 160 50 yes yes 1.5 yes 1.0 10.0 175 55 yes fdm_materials-4.4.1/tizyx_petg.xml.fdm_material000066400000000000000000000044131357616251300217150ustar00rootroot00000000000000 TiZYX PETG Generic #00ff00 3 a37db29f-c289-4e44-817a-52b1f016e898 Easily peeled off with a flexible build plate. 1.27 1.75 235.0 70.0 235.0 5 50 210 55 175 1.0 10.0 yes 185 50 160 1.0 40.0 40 yes 1.5 yes yes fdm_materials-4.4.1/tizyx_pla.xml.fdm_material000066400000000000000000000052111357616251300215270ustar00rootroot00000000000000 TiZYX PLA toutes couleurs 3 #20FFFF 2b61d300-bf30-4780-a9ae-40c86d865f87 Easily peeled off with a flexible build plate. Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. 1.75 1.24 50 200 200.0 60 5 50 185 160 40.0 40 1.0 yes yes yes 1.5 55 210 175 10.0 1.0 yes fdm_materials-4.4.1/tizyx_pla_bois.xml.fdm_material000066400000000000000000000043201357616251300225430ustar00rootroot00000000000000 TiZYX PLA Bois bois 3 #ac7300 60e6c0e4-b22f-42d7-9807-aef7f0c6fee7 Easily peeled off with a flexible build plate. Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. 1.75 1.24 50.0 200 200.0 60 5 50 185 160 40.0 40 yes yes yes 1.5 55 210 175 yes fdm_materials-4.4.1/tizyx_pva.xml.fdm_material000066400000000000000000000043001357616251300215370ustar00rootroot00000000000000 TiZYX PVA Generic 3 #aa00ff Easily peeled off with a flexible build plate. 89df7af9-5c23-4c82-a4ee-e4749bed47f8 1.24 1.75 60 210.0 210.0 4.0 30.0 50 185 40.0 160 1.0 40 yes 1.5 yes yes 55 175 1.0 10.0 yes fdm_materials-4.4.1/ultimaker_abs_black.xml.fdm_material000066400000000000000000000144051357616251300234670ustar00rootroot00000000000000 Ultimaker ABS Black 2f9d2279-9b0e-4765-bf9b-d1e1e13f3c49 22 #2a292a Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_blue.xml.fdm_material000066400000000000000000000144041357616251300233410ustar00rootroot00000000000000 Ultimaker ABS Blue 7c9575a6-c8d6-40ec-b3dd-18d7956bfaae 22 #00387b Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_green.xml.fdm_material000066400000000000000000000143131357616251300235110ustar00rootroot00000000000000 Ultimaker ABS Green 3400c0d1-a4e3-47de-a444-7b704f287171 22 #61993b Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_grey.xml.fdm_material000066400000000000000000000144051357616251300233610ustar00rootroot00000000000000 Ultimaker ABS Grey 8b75b775-d3f2-4d0f-8fb2-2a3dd53cf673 22 #52595d Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_orange.xml.fdm_material000066400000000000000000000144071357616251300236700ustar00rootroot00000000000000 Ultimaker ABS Orange 0b4ca6ef-eac8-4b23-b3ca-5f21af00e54f 22 #ed6b21 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_pearl-gold.xml.fdm_material000066400000000000000000000144131357616251300244400ustar00rootroot00000000000000 Ultimaker ABS Pearl Gold 7cbdb9ca-081a-456f-a6ba-f73e4e9cb856 22 #80643f Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_red.xml.fdm_material000066400000000000000000000144041357616251300231640ustar00rootroot00000000000000 Ultimaker ABS Red 5df7afa6-48bd-4c19-b314-839fe9f08f1f 22 #bb1e10 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_silver-metallic.xml.fdm_material000066400000000000000000000144201357616251300255040ustar00rootroot00000000000000 Ultimaker ABS Silver Metallic 763c926e-a5f7-4ba0-927d-b4e038ea2735 22 #a1a1a0 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_white.xml.fdm_material000066400000000000000000000144061357616251300235340ustar00rootroot00000000000000 Ultimaker ABS White 5253a75a-27dc-4043-910f-753ae11bc417 22 #ecece7 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_abs_yellow.xml.fdm_material000066400000000000000000000144071357616251300237300ustar00rootroot00000000000000 Ultimaker ABS Yellow e873341d-d9b8-45f9-9a6f-5609e1bcff68 22 #f7b500 Tough and durable. ABS is good for mechanical parts. It is impact resistant, dimensionally stable and handles temperatures up to 85ºC. Use glue, to avoid chipping of the glass. https://ultimaker.com/in/cura/materials/ultimaker-abs/printing-guidelines 1.10 2.85 750 -4 5 -16 10 230 -50 25 85 300 0.947225981 0.5 0.5 60 20 230 80 200 0 70 0.9 36 1.0 0.8 0 yes 225 100 40 6.5 yes 5 yes 90 85 yes 225 85 40 6.5 yes 2 85 5 yes 85 yes 225 85 40 6.5 yes 2 85 5 yes 5 no yes yes yes fdm_materials-4.4.1/ultimaker_bam.xml.fdm_material000066400000000000000000000114011357616251300223160ustar00rootroot00000000000000 Ultimaker Breakaway White 7e6207c4-22ff-441a-b261-ff89f166d5f9 25 #F1ECE1 Breakaway Material. Breakaway is a matching support material for PLA, ABS, CPE, CPE+, and Nylon Use the same temperatures and adhesion method as your build material(s). https://ultimaker.com/in/cura/materials/ultimaker-breakaway/printing-guidelines 1.22 2.85 750 -20 10 -10 1 230 -50 25 95 300 0.97 0.5 0.5 60 20 225 60 100 24 1.0 0.8 0 100 no no yes no 100 no no yes no 100 no no yes no yes no yes no fdm_materials-4.4.1/ultimaker_cpe_black.xml.fdm_material000066400000000000000000000144051357616251300234710ustar00rootroot00000000000000 Ultimaker CPE Black a8955dc3-9d7e-404d-8c03-0fd6fee7f22d 25 #2a292a Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_blue.xml.fdm_material000066400000000000000000000144041357616251300233430ustar00rootroot00000000000000 Ultimaker CPE Blue 4d816290-ce2e-40e0-8dc8-3f702243131e 25 #00a3e0 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_dark-grey.xml.fdm_material000066400000000000000000000144111357616251300242770ustar00rootroot00000000000000 Ultimaker CPE Dark Grey 10961c00-3caf-48e9-a598-fa805ada1e8d 25 #4f5250 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_green.xml.fdm_material000066400000000000000000000144051357616251300235150ustar00rootroot00000000000000 Ultimaker CPE Green 7ff6d2c8-d626-48cd-8012-7725fa537cc9 25 #78be20 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_light-grey.xml.fdm_material000066400000000000000000000144121357616251300244660ustar00rootroot00000000000000 Ultimaker CPE Light Grey 173a7bae-5e14-470e-817e-08609c61e12b 25 #c5c7c4 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_plus_black.xml.fdm_material000066400000000000000000000142731357616251300245370ustar00rootroot00000000000000 Ultimaker CPE+ Black 1aca047a-42df-497c-abfb-0e9cb85ead52 22 #0e0e10 Chemically resistant and tough. CPE+ is chemically inert, tough, dimensionally stable and handles temperatures up to 100ºC. Use glue for small prints. An adhesion sheet is recommended for larger prints. https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines 1.18 2.85 750 -4 5 -16 2 260 -50 25 105 300 0.98245614 0.5 0.5 60 20 260 107 175 0 65 0.9 41 1.0 0.8 0 yes no no yes 7 1 yes 8 no yes 110 100 7 40 1 yes 110 8 no yes 110 100 8 40 1 yes 110 8 40 8 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_plus_transparent.xml.fdm_material000066400000000000000000000143011357616251300260140ustar00rootroot00000000000000 Ultimaker CPE+ Transparent a9c340fe-255f-4914-87f5-ec4fcb0c11ef 22 #d0d0d0 Chemically resistant and tough. CPE+ is chemically inert, tough, dimensionally stable and handles temperatures up to 100ºC. Use glue for small prints. An adhesion sheet is recommended for larger prints. https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines 1.18 2.85 750 -4 5 -16 2 260 -50 25 105 300 0.98245614 0.5 0.5 60 20 260 107 175 0 65 0.9 41 1.0 0.8 0 yes no no yes 110 100 7 40 1 yes 110 8 no yes 7 1 yes 8 no yes 110 100 8 40 1 yes 110 8 40 8 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_plus_white.xml.fdm_material000066400000000000000000000142731357616251300246030ustar00rootroot00000000000000 Ultimaker CPE+ White 6df69b13-2d96-4a69-a297-aedba667e710 22 #f1ece1 Chemically resistant and tough. CPE+ is chemically inert, tough, dimensionally stable and handles temperatures up to 100ºC. Use glue for small prints. An adhesion sheet is recommended for larger prints. https://ultimaker.com/in/cura/materials/ultimaker-cpe-plus/printing-guidelines 1.18 2.85 750 -4 5 -16 2 260 -50 25 105 300 0.98245614 0.5 0.5 60 20 260 107 175 0 65 0.9 41 1.0 0.8 0 yes no no yes 7 1 yes 8 no yes 110 100 7 40 1 yes 110 8 no yes 110 100 8 40 1 yes 110 8 40 8 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_red.xml.fdm_material000066400000000000000000000144031357616251300231650ustar00rootroot00000000000000 Ultimaker CPE Red 00181d6c-7024-479a-8eb7-8a2e38a2619a 25 #c8102e Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_transparent.xml.fdm_material000066400000000000000000000144131357616251300247550ustar00rootroot00000000000000 Ultimaker CPE Transparent bd0d9eb3-a920-4632-84e8-dcd6086746c5 25 #d0d0d0 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_white.xml.fdm_material000066400000000000000000000144051357616251300235350ustar00rootroot00000000000000 Ultimaker CPE White 881c888e-24fb-4a64-a4ac-d5c95b096cd7 25 #f1ece1 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_cpe_yellow.xml.fdm_material000066400000000000000000000144061357616251300237310ustar00rootroot00000000000000 Ultimaker CPE Yellow b9176a2a-7a0f-4821-9f29-76d882a88682 25 #f6b600 Chemically resistant and tough. CPE is chemically inert, tough, dimensionally stable and handles temperatures up to 70ºC. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-cpe/printing-guidelines 1.27 2.85 750 -4 5 -16 2 250 -50 25 75 300 0.95 0.5 0.5 60 20 240 70 175 0 70 37 1.0 0.8 0 yes 230 100 6.5 yes yes 80 yes 75 230 100 6.5 yes 75 100 20 yes 80 yes 75 230 100 6.5 yes 75 100 8 40 20 yes 80 8 40 no yes yes yes fdm_materials-4.4.1/ultimaker_nylon_black.xml.fdm_material000066400000000000000000000143451357616251300240640ustar00rootroot00000000000000 Ultimaker Nylon Black c64c2dbe-5691-4363-a7d9-66b2dc12837f 22 #27292b Nylon is strong, abrasion-resistant, durable and engineered for low moisture sensitivity. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-nylon/printing-guidelines 1.14 2.85 750 -8 25 0 2 250 -50 25 145 300 0.95 0.5 0.5 60 20 245 60 175 8 25 2 100 true 35 1.0 0.8 0 40 yes 230 100 6.5 yes yes 45 40 yes 230 100 6.5 yes 70 yes 70 45 40 yes 230 100 6.5 yes 70 8 yes 70 8 45 yes yes no no fdm_materials-4.4.1/ultimaker_nylon_transparent.xml.fdm_material000066400000000000000000000143531357616251300253500ustar00rootroot00000000000000 Ultimaker Nylon Transparent e256615d-a04e-4f53-b311-114b90560af9 22 #d0d0d0 Nylon is strong, abrasion-resistant, durable and engineered for low moisture sensitivity. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-nylon/printing-guidelines 1.14 2.85 750 -8 25 0 2 250 -50 25 145 300 0.95 0.5 0.5 60 20 245 60 175 8 25 2 100 true 35 1.0 0.8 0 40 yes 230 100 6.5 yes yes 45 40 yes 230 100 6.5 yes 70 yes 70 45 40 yes 230 100 6.5 yes 70 8 yes 70 8 45 yes yes no no fdm_materials-4.4.1/ultimaker_pc_black.xml.fdm_material000066400000000000000000000164301357616251300233240ustar00rootroot00000000000000 Ultimaker PC Black e92b1f0b-a069-4969-86b4-30127cfb6f7b 23 #0e0e10 Strong, tough and temperature resistant. PC offers a great print quality, heat resistance up to 110ºC, mechanical strength and toughness. Use glue for small prints. An adhesion sheet is recommended for larger prints. Set your print speed to a low value (10mm/sec) to get better layer bonding. https://ultimaker.com/in/cura/materials/ultimaker-pc/printing-guidelines 1.19 2.85 750 -4 5 -16 2 275 -50 25 105 300 0.94 0.5 0.5 60 20 270 107 175 0 65 0.7 41 1.0 0.8 0 yes yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 8 5 no yes yes yes 0.0 160 40 135 245 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/ultimaker_pc_transparent.xml.fdm_material000066400000000000000000000164361357616251300246170ustar00rootroot00000000000000 Ultimaker PC Transparent 8a38a3e9-ecf7-4a7d-a6a9-e7ac35102968 23 #d0d0d0 Strong, tough and temperature resistant. PC offers a great print quality, heat resistance up to 110ºC, mechanical strength and toughness. Use glue for small prints. An adhesion sheet is recommended for larger prints. Set your print speed to a low value (10mm/sec) to get better layer bonding. https://ultimaker.com/in/cura/materials/ultimaker-pc/printing-guidelines 1.19 2.85 750 -4 5 -16 2 275 -50 25 105 300 0.94 0.5 0.5 60 20 270 107 175 0 65 0.7 41 1.0 0.8 0 yes yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 8 5 no yes yes yes 0.0 160 40 135 245 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/ultimaker_pc_white.xml.fdm_material000066400000000000000000000164301357616251300233700ustar00rootroot00000000000000 Ultimaker PC White 5e786b05-a620-4a87-92d0-f02becc1ff98 23 #ecece7 Strong, tough and temperature resistant. PC offers a great print quality, heat resistance up to 110ºC, mechanical strength and toughness. Use glue for small prints. An adhesion sheet is recommended for larger prints. Set your print speed to a low value (10mm/sec) to get better layer bonding. https://ultimaker.com/in/cura/materials/ultimaker-pc/printing-guidelines 1.19 2.85 750 -4 5 -16 2 275 -50 25 105 300 0.94 0.5 0.5 60 20 270 107 175 0 65 0.7 41 1.0 0.8 0 yes yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 5 110 yes 100 6.5 yes 0 8 35 yes 8 5 no yes yes yes 0.0 160 40 135 245 yes 1.0 yes 1.0 yes 1.5 fdm_materials-4.4.1/ultimaker_pla_black.xml.fdm_material000066400000000000000000000151471357616251300235020ustar00rootroot00000000000000 Ultimaker PLA Black 3ee70a86-77d8-4b87-8005-e4a1bc57d2ce 21 #0e0e10 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_blue.xml.fdm_material000066400000000000000000000151461357616251300233540ustar00rootroot00000000000000 Ultimaker PLA Blue 44a029e6-e31b-4c9e-a12f-9282e29a92ff 21 #00387b Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_green.xml.fdm_material000066400000000000000000000151471357616251300235260ustar00rootroot00000000000000 Ultimaker PLA Green 2433b8fb-dcd6-4e36-9cd5-9f4ee551c04c 21 #61993b Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_magenta.xml.fdm_material000066400000000000000000000151511357616251300240350ustar00rootroot00000000000000 Ultimaker PLA Magenta fe3982c8-58f4-4d86-9ac0-9ff7a3ab9cbc 21 #bc4077 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_orange.xml.fdm_material000066400000000000000000000151501357616251300236730ustar00rootroot00000000000000 Ultimaker PLA Orange d9549dba-b9df-45b9-80a5-f7140a9a2f34 21 #ed6b21 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_pearl-white.xml.fdm_material000066400000000000000000000151551357616251300246460ustar00rootroot00000000000000 Ultimaker PLA Pearl-White d9fc79db-82c3-41b5-8c99-33b3747b8fb3 21 #e3d9c6 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_red.xml.fdm_material000066400000000000000000000151451357616251300231760ustar00rootroot00000000000000 Ultimaker PLA Red 9cfe5bf1-bdc5-4beb-871a-52c70777842d 21 #bb1e10 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_silver-metallic.xml.fdm_material000066400000000000000000000150641357616251300255200ustar00rootroot00000000000000 Ultimaker PLA Silver Metallic 0e01be8c-e425-4fb1-b4a3-b79f255f1db9 21 #a1a1a0 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_transparent.xml.fdm_material000066400000000000000000000151551357616251300247660ustar00rootroot00000000000000 Ultimaker PLA Transparent 532e8b3d-5fd4-4149-b936-53ada9bd6b85 21 #d0d0d0 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_white.xml.fdm_material000066400000000000000000000151471357616251300235460ustar00rootroot00000000000000 Ultimaker PLA White e509f649-9fe6-4b14-ac45-d441438cb4ef 21 #f1ece1 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pla_yellow.xml.fdm_material000066400000000000000000000151471357616251300237410ustar00rootroot00000000000000 Ultimaker PLA Yellow 9c1959d0-f597-46ec-9131-34020c7a54fc 21 #f9a800 Fast, safe and reliable printing. PLA is ideal for the fast and reliable printing of parts and prototypes with a great surface quality. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 210 -50 25 60 300 0.940860215 0.5 0.5 60 20 200 60 175 0 100 28 1.0 0.8 0 150 150 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_pp_transparent.xml.fdm_material000066400000000000000000000143731357616251300246320ustar00rootroot00000000000000 Ultimaker PP Transparent c7005925-2a41-4280-8cdd-4029e3fe5253 24 #d0d0d0 Fatigue and chemical resistant. Polypropylene offers excellent temperature, chemical and fatigue resistance. Its toughness and low friction make it a perfect choice for prototyping and creating durable end-use models. Adhesion sheets are required. https://ultimaker.com/in/cura/materials/ultimaker-pp/printing-guidelines 2.85 0.89 750 -8 40 -8 17 220 -50 25 105 300 1.016702977 0.5 0.5 60 20 220 100 185 20 35 2.5 41 1.0 0.8 0 8 no yes 85 100 6.5 25 yes 85 yes 7 10 85 yes 100 6.5 25 yes yes 7 10 85 yes 100 6.5 25 yes yes 8 10 no yes yes yes fdm_materials-4.4.1/ultimaker_pva.xml.fdm_material000066400000000000000000000173271357616251300223620ustar00rootroot00000000000000 Ultimaker PVA Natural fe15ed8a-33c3-4f57-a2a7-b4b78a38c3cb 25 #f5f2d1 Water soluble support material. PVA is a matching support material for PLA, CPE and Nylon. Use the same temperatures and adhesion method as your build material(s). https://ultimaker.com/in/cura/materials/ultimaker-pva/printing-guidelines Ultimaker B.V. Ultimaker Support support@ultimaker.com +31 345 712001
Watermolenweg 2 Geldermalsen Gelderland 4191 PN The Netherlands
Ultimaker B.V. Support support@ultimaker.com +31 345 712001
Watermolenweg 2 Geldermalsen Gelderland 4191 PN The Netherlands
87 10400 31118 0
1.23 2.85 750 -2 20 -2 20 225 -50 50 170 60 0.95 0.5 0.5 60 20 215 60 175 true 35 1.0 0.8 0 no no no no yes yes no no no no yes yes no no no yes yes no yes yes no no 0.0 160 40 50 205 yes 1.0 yes 1.0 yes 1.5
fdm_materials-4.4.1/ultimaker_tough_pla_black.xml.fdm_material000066400000000000000000000125361357616251300247070ustar00rootroot00000000000000 Ultimaker Tough PLA Black 03f24266-0291-43c2-a6da-5211892a2699 16 #2a292a Technical PLA material with toughness similar to ABS. Ideal for reliably printing functional prototypes and tooling at larger sizes, Tough PLA offers the same safe and easy use as regular PLA. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines 1.22 2.85 750 -4 5 -16 2 230 -50 25 55 300 0.940860215 0.5 0.5 60 20 225 60 175 0 100 24 1.0 0.8 0 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_tough_pla_green.xml.fdm_material000066400000000000000000000125361357616251300247330ustar00rootroot00000000000000 Ultimaker Tough PLA Green 6d71f4ad-29ab-4b50-8f65-22d99af294dd 16 #00a95c Technical PLA material with toughness similar to ABS. Ideal for reliably printing functional prototypes and tooling at larger sizes, Tough PLA offers the same safe and easy use as regular PLA. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines 1.22 2.85 750 -4 5 -16 2 230 -50 25 55 300 0.940860215 0.5 0.5 60 20 225 60 175 0 100 24 1.0 0.8 0 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_tough_pla_red.xml.fdm_material000066400000000000000000000125341357616251300244030ustar00rootroot00000000000000 Ultimaker Tough PLA Red 2db25566-9a91-4145-84a5-46c90ed22bdf 16 #de4343 Technical PLA material with toughness similar to ABS. Ideal for reliably printing functional prototypes and tooling at larger sizes, Tough PLA offers the same safe and easy use as regular PLA. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 230 -50 25 55 300 0.940860215 0.5 0.5 60 20 225 60 175 0 100 24 1.0 0.8 0 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_tough_pla_white.xml.fdm_material000066400000000000000000000125361357616251300247530ustar00rootroot00000000000000 Ultimaker Tough PLA White 851427a0-0c9a-4d7c-a9a8-5cc92f84af1f 16 #ecece7 Technical PLA material with toughness similar to ABS. Ideal for reliably printing functional prototypes and tooling at larger sizes, Tough PLA offers the same safe and easy use as regular PLA. Print on bare glass. Use tape for cold build plates. https://ultimaker.com/in/cura/materials/ultimaker-tough-pla/printing-guidelines 1.24 2.85 750 -4 5 -16 2 230 -50 25 55 300 0.940860215 0.5 0.5 60 20 225 60 175 0 100 24 1.0 0.8 0 100 yes 100 6.5 yes yes 5 100 yes 100 6.5 yes yes 100 5 100 yes 100 6.5 yes yes 100 5 yes yes yes no fdm_materials-4.4.1/ultimaker_tpu_black.xml.fdm_material000066400000000000000000000141421357616251300235300ustar00rootroot00000000000000 Ultimaker TPU 95A Black eff40bcf-588d-420d-a3bc-a5ffd8c7f4b3 21 #0e0e10 Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines 1.22 2.85 750 -6.5 25 0 2 223 -50 25 195 300 1.049475262 0.5 0.5 60 20 228 0 175 3 100 true 27 1.0 0.8 0 yes no 223 no yes 20 35 yes 45 50 223 no yes 20 35 yes 45 50 223 no yes 20 8 35 yes 8 45 50 yes yes yes no fdm_materials-4.4.1/ultimaker_tpu_blue.xml.fdm_material000066400000000000000000000141411357616251300234020ustar00rootroot00000000000000 Ultimaker TPU 95A Blue 5f4a826c-7bfe-460f-8650-a9178b180d34 21 #00387b Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines 1.22 2.85 750 -6.5 25 0 2 223 -50 25 195 300 1.049475262 0.5 0.5 60 20 228 0 175 3 100 true 27 1.0 0.8 0 yes no 223 no yes 20 35 yes 45 50 223 no yes 20 35 yes 45 50 223 no yes 20 8 35 yes 8 45 50 yes yes yes no fdm_materials-4.4.1/ultimaker_tpu_red.xml.fdm_material000066400000000000000000000141401357616251300232240ustar00rootroot00000000000000 Ultimaker TPU 95A Red 07a4547f-d21f-41a0-8eee-bc92125221b3 21 #a63437 Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines 1.22 2.85 750 -6.5 25 0 2 223 -50 25 195 300 1.049475262 0.5 0.5 60 20 228 0 175 3 100 true 27 1.0 0.8 0 yes no 223 no yes 20 35 yes 45 50 223 no yes 20 35 yes 45 50 223 no yes 20 8 35 yes 8 45 50 yes yes yes no fdm_materials-4.4.1/ultimaker_tpu_white.xml.fdm_material000066400000000000000000000141421357616251300235740ustar00rootroot00000000000000 Ultimaker TPU 95A White 6a2573e6-c8ee-4c66-8029-3ebb3d5adc5b 21 #f1ece1 Wear and tear resistant. TPU features a Shore-A hardness of 95 and an elongation of up to 580% at break. Suitable for applications that require slight flexibility, wear and tear, and chemical resistance. Use glue. https://ultimaker.com/in/cura/materials/ultimaker-tpu-95a/printing-guidelines 1.22 2.85 750 -6.5 25 0 2 223 -50 25 195 300 1.049475262 0.5 0.5 60 20 228 0 175 3 100 true 27 1.0 0.8 0 yes no 223 no yes 20 35 yes 45 50 223 no yes 20 35 yes 45 50 223 no yes 20 8 35 yes 8 45 50 yes yes yes no fdm_materials-4.4.1/verbatim_bvoh_175.xml.fdm_material000066400000000000000000000015171357616251300227340ustar00rootroot00000000000000 Verbatim BVOH Generic c860a504-f47c-4c57-a251-1e2ecd79600a 2 #a32bcc Water soluble support material. BVOH is a matching support material for PLA, CPE and PET. Use the same temperatures and adhesion method as your build material(s). 1.23 1.75 210 fdm_materials-4.4.1/zyyx_pro_flex.xml.fdm_material000066400000000000000000000021431357616251300224260ustar00rootroot00000000000000 ZYYX TPU Generic Use with ZYYX standard build plate Fast, safe and reliable printing. ZYYX proFlex is ideal for flexible parts or soft grip parts. 2 #c0c0c0 182d2e1d-02cf-4208-b5e7-08607d0af2d8 1.2 1.75 230 0 200 100 true fdm_materials-4.4.1/zyyx_pro_pla.xml.fdm_material000066400000000000000000000020111357616251300222360ustar00rootroot00000000000000 ZYYX PLA Generic Use with ZYYX standard build plate Fast, safe and reliable printing. ZYYX proPLA is ideal for printing parts and prototypes with a great surface quality. 1 #ffc924 cece7f55-2ccc-4807-bbb6-4a5df9c9df81 1.24 1.75 210 0 200 100