hugo & tasks init

This commit is contained in:
lovebird 2024-08-18 16:34:30 +02:00
parent 9751aed9ce
commit edd7fa7464
896 changed files with 102255 additions and 43 deletions

39
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,39 @@
stages:
- build
variables:
HUGO_ENV: production
HUGO_VERSION: "0.115.1"
GO_VERSION: "1.20.5"
NODE_VERSION: "18.16.1"
cache:
paths:
- node_modules/
default:
image: node:${NODE_VERSION}
before_script:
- echo "USING NODE ${NODE_VERSION}"
- apt-get update && apt-get install -y curl
- curl -LO "https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz"
- tar -xvf hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
- mv hugo /usr/local/bin/
- rm hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
- echo "HUGO ${HUGO_VERSION} INSTALLED"
- curl -LO "https://dl.google.com/go/go${GO_VERSION}.linux-amd64.tar.gz"
- tar -C /usr/local -xzf go${GO_VERSION}.linux-amd64.tar.gz
- export PATH=$PATH:/usr/local/go/bin
- rm go${GO_VERSION}.linux-amd64.tar.gz
- echo "GO ${GO_VERSION} INSTALLED"
- npm install
pages:
stage: build
script:
- npm run project-setup
- npm run build
- echo "SITE BUILT SUCCESSFULLY! LIVE AT https://$GITLAB_USER_LOGIN.gitlab.io/$CI_PROJECT_NAME/"
artifacts:
paths:
- public

59
.jshintrc Normal file
View File

@ -0,0 +1,59 @@
{
"maxerr": 50,
"bitwise": true,
"camelcase": false,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"immed": true,
"indent": 2,
"latedef": true,
"newcap": false,
"noarg": true,
"noempty": true,
"nonbsp": true,
"nonew": true,
"plusplus": false,
"undef": true,
"unused": false,
"strict": true,
"maxparams": false,
"maxdepth": 4,
"maxstatements": false,
"maxcomplexity": false,
"maxlen": 400,
"browser": true,
"devel": true,
"asi": false,
"boss": false,
"debug": false,
"eqnull": false,
"es3": false,
"es5": false,
"esversion": 12,
"moz": false,
"evil": true,
"expr": true,
"funcscope": false,
"globalstrict": false,
"iterator": false,
"lastsemic": false,
"laxbreak": false,
"laxcomma": false,
"loopfunc": true,
"multistr": true,
"noyield": false,
"notypeof": false,
"proto": false,
"scripturl": false,
"shadow": false,
"sub": false,
"supernew": false,
"validthis": false,
"globals": {
"jQuery": false,
"google": false,
"$": false
}
}

20
.osr-sync-lib.json Normal file
View File

@ -0,0 +1,20 @@
{
"debug": true,
"matching": [
"*.json",
"*.md",
"*.yaml",
"*.csv",
"*.xls",
"*.xlsx",
"*.ods",
"*.osrl",
"*.txt",
"media/gallery/**",
"resources/**",
"drawings/**",
"firmware/**",
"howto/**",
"renderings/**"
]
}

66
.osrl.json Normal file
View File

@ -0,0 +1,66 @@
{
"includes": [
"${root}/osr",
"${root}/osr/library",
"${root}/osr/widgets",
"${root}/osr/commons",
"${cwd}/osr",
"${cwd}/osr/library",
"${cwd}/osr/widgets",
"${cwd}/osr/commons",
"${cwd}/src/data",
"${cwd}/src/data-en",
"${cwd}/src/data-es",
"${cwd}/src/data-fr"
],
"variables": {
"PRODUCT_ROOT": "${root}/${product}/",
"_abs_url": "https://plastic-hub.com",
"abs_url": "https://plastic-hub.com/",
"CACHE": "${root}/cache/",
"CACHE_URL": "${abs_url}/cache/",
"GIT_REPO": "https://git.osr-plastic.org/osr-plastic/osr-machines",
"OSR_MACHINES_ASSETS_URL":"https://assets.osr-plastic.org/machines/",
"PRODUCTS_ASSETS_URL":"https://assets.osr-plastic.org/machines/${product}",
"OSR_FILES_WEB":"https://files.osr-plastic.org/files/osr-machines",
"PRODUCTS_FILES_URL":"${OSR_FILES_WEB}/${product_rel}",
"DISCORD":"https://discord.gg/s8K7yKwBRc"
},
"env": {
"library": {
"includes": [
"${PRODUCT_ROOT}/templates/shared/",
"${root}/osr",
"${root}/osr/widgets",
"${root}/osr/commons"
],
"variables": {
"abs_url": "http://localhost:8008/"
}
},
"library-release": {
"includes": [
"${PRODUCT_ROOT}/templates/shared/",
"${root}/osr",
"${root}/osr/widgets",
"${PRODUCT_ROOT}"
],
"variables": {
"abs_url": "https://osr-plastic.org"
}
},
"hugo-release": {
"includes": [
"${PRODUCT_ROOT}/templates/bazar",
"${PRODUCT_ROOT}/templates/shared/",
"${root}/osr",
"${root}/osr/widgets",
"${PRODUCT_ROOT}"
],
"variables": {
"abs_url": "https://plastic-hub.com/",
"OSR_MACHINES_ASSETS_URL": "https://assets.osr-plastic.org/machines/"
}
}
}
}

132
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,132 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Grunt - compile:content-en",
"skipFiles": [
"<node_internals>/**"
],
"program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt",
"cwd": "${workspaceRoot}",
"args": [
"compile:content-en",
"--verbose=false",
"--cache=false",
"--logLevel=trace",
"--stack"
] ,
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Grunt - Help",
"skipFiles": [
"<node_internals>/**"
],
"program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt",
"cwd": "${workspaceRoot}",
"args": [
"--help",
"--verbose=false",
"--cache=true",
"--logLevel=info",
"--stack"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Grunt - Compile Products: Katbot : DE",
"skipFiles": [
"<node_internals>/**"
],
"program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt",
"cwd": "${workspaceRoot}",
"args": [
"content-de-katbot-pro-mega-beta",
"--verbose=false",
"--logLevel=debug",
"--stack"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Grunt - Compile Products : Product - EN",
"skipFiles": [
"<node_internals>/**"
],
"program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt",
"cwd": "${workspaceRoot}",
"args": [
"compile:content-en-lydia-v4.5",
"--content-de-katbot-pro-mega-beta",
"--convertProductMedia=true",
"--verbose=false",
"--logLevel=debug",
"--stack"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"outputCapture": "std"
},
{
"type": "node",
"request": "launch",
"name": "Grunt - Performance Profile",
"skipFiles": [
"<node_internals>/**"
],
"program": "${env:APPDATA}\\npm\\node_modules\\grunt\\bin\\grunt",
"cwd": "${workspaceRoot}",
"args": [
"--help",
"--verbose=false",
"--debug=true"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
],
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"outputCapture": "std"
}
]
}

463
config/_default/params.toml Normal file
View File

@ -0,0 +1,463 @@
# If an option value is said to be not set, you can achieve the same behavior
# by giving it an empty string value.
###############################################################################
# Hugo
# These options usually apply to other themes as well.
# The author of your site.
# Default: not set
# This will be used in HTML meta tags, the opengraph protocol and twitter
# cards.
# You can also set `author.email` if you want to publish this information.
author.name = "PlasticHub"
# The social media image of your site.
# Default: not set
# This is used for generating social media meta information for the opengraph
# protocol and twitter cards.
# This can be overridden in the page's frontmatter.
images = ["images/hero.png"]
# Admin options for social media.
# Default: not set
# Configuration for the Open Graph protocol and Twitter Cards adhere to Hugo's
# implementation. See the Hugo docs for possible values.
social.facebook_admin = ""
social.twitter = ""
keywords = ["recycling", "plastic"]
###############################################################################
# Relearn Theme
# These options are specific to the Relearn theme.
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Branding
# These options set your overall visual appearance.
# Used color variants.
# Default: "auto"
# This sets one or more color variants, available to your readers to choose
# from. You can
# - set a single value eg. "zen-light"
# - an array like [ "neon", "learn" ]
# - an array with options like [ { identifier = "neon" },{ identifier = "learn" } ]
# The last form allows to set further options for each variant.
# The `identifier` is mandatory. You can also set `name` which overrides the
# value displayed in the variant selector.
# If the array has more than one entry, a variant selector
# is shown in the lower part of the menu. The first entry in the array is the
# default variant, used for first time visitors.
# The theme ships with the following variants: "relearn-bright",
# "relearn-light", "relearn-dark", "zen-light", "zen-dark", "neon", "learn",
# "blue", "green", "red". In addition you can use auto mode variants. See the
# docs for a detailed explanation.
# You can also define your own variants. See the docs how this works. Also,
# the docs provide an interactive theme generator to help you with this task.
themeVariant = [
{ identifier = "relearn-auto", name = "Relearn Light/Dark", auto = [
] },
{ identifier = "relearn-light" },
{ identifier = "relearn-dark" },
{ identifier = "relearn-bright" },
{ identifier = "zen-auto", name = "Zen Light/Dark", auto = [
"zen-light",
"zen-dark",
] },
{ identifier = "zen-light" },
{ identifier = "zen-dark" },
{ identifier = "retro-auto", name = "Retro Learn/Neon", auto = [
"learn",
"neon",
] },
{ identifier = "neon" },
{ identifier = "learn" },
{ identifier = "blue" },
{ identifier = "green" },
{ identifier = "red" },
]
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# General
# These options are defining general, non visual behavior.
# Avoid new asset URLs on build.
# Default: false
# By default JavaScript-files and CSS-files get a unique ID on each rebuild.
# This makes sure, the user always has the latest version and not some stale
# copy of his browser cache. Anyways, it can be desireable to turn this
# off in certain circumstances. For example if you have Hugo's dev server
# running. Also some proxies dislike this optimization.
disableAssetsBusting = true
# Avoid generator meta tags.
# Default: false
# Set this to true if you want to disable generation for generator meta tags
# of Hugo and the theme in your HTML head. In this case also don't forget to
# set Hugo's disableHugoGeneratorInject=true. Otherwise Hugo will generate a
# meta tag into your home page anyways.
disableGeneratorVersion = false
# Avoid unique IDs.
# Default: false
# In various situations the theme generates non stable unique ids to be used
# in HTML fragment links. This can be undesirable for example when testing
# the output for changes. If you disable the random id generation, the theme
# may not function correctly anymore.
disableRandomIds = false
# Multilanguage content.
# Default: not set
# If your pages contain further languages besides the main one used, add all
# those auxiliary languages here. This will create a search index with
# support for all used languages of your site.
# This is handy for example if you are writing in Spanish but have lots of
# source code on your page which typically uses English terminology.
additionalContentLanguage = ["en", "es", "fr", "ja", "de"]
# Additional code dependencies.
# Default: See hugo.toml of the theme
# The theme provides a mechanism to load further JavaScript and CSS
# dependencies on demand only if they are needed. This comes in handy if you
# want to add own shortcodes that depend on additional code to be loaded.
# See the docs how this works.
# [relearn.dependencies]
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Topbar
# These options modify the topbar appearance.
# Hide the table of contents button.
# Default: false
# If the TOC button is hidden, also the keyboard shortcut is disabled.
# This can be overridden in the page's frontmatter.
disableToc = false
# Hide the breadcrumbs.
# Default: false
# If the breadcrumbs are hidden, the title of the displayed page will still be
# shown in the topbar.
disableBreadcrumb = false
# Hide Next and Previous navigation buttons.
# Default: false
# If the navigation buttons are hidden, also the keyboard shortcuts are
# disabled.
disableNextPrev = false
# The URL prefix to edit a page.
# Default: not set
# If set, an edit button will be shown in the topbar. If the button is hidden,
# also the keyboard shortcuts are disabled. The value can contain the macro
# `${FilePath}` which will be replaced by the file path of your displayed page.
# If no `${FilePath}` is given in the value, the value is treated as if the
# `${FilePath}` was appended at the end of the value. This can be overridden
# in the pages frontmatter. This is useful if you want to give the opportunity
# for people to create merge request for your content.
editURL = "https://github.com/McShelby/hugo-theme-relearn/edit/main/exampleSite/content/${FilePath}"
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Menu
# These options modify the menu appearance.
# Hide the search box.
# Default: false
# If the search box is disabled, the search functionality is disabled too.
# This will also cause the keyboard shortcut to be disabled and the dedicated
# search page is not linked although it mighty be configured.
disableSearch = false
# Hide the Home entry.
# Default: false
# If shown, a Home button will appear below the search bar and the main menu.
# It links to your the home page of the current language.
disableLandingPageButton = false
# The order of main menu submenus.
# Default: "weight"
# Submenus can be ordered by "weight", "title", "linktitle", "modifieddate",
# "expirydate", "publishdate", "date", "length" or "default" (adhering to
# Hugo's default sort order). This can be overridden in the pages frontmatter.
ordersectionsby = "weight"
# The initial expand state of submenus.
# Default: not set
# This controls whether submenus will be expanded (true), or collapsed (false)
# in the menu. If not set, the first menu level is set to false, all others
# levels are set to true. This can be overridden in the page's frontmatter.
# If the displayed page has submenus, they will always been displayed expanded
# regardless of this option.
alwaysopen = true
# Shows expander for submenus.
# Default: false
# If set to true, a submenu in the sidebar will be displayed in a collapsible
# tree view and a clickable expander is set in front of the entry.
# This can be overridden in the page's frontmatter.
collapsibleMenu = false
# Shows checkmarks for visited pages of the main menu.
# Default: false
# This also causes the display of the `Clear History` entry in the lower part
# of the menu to remove all checkmarks. The checkmarks will also been removed
# if you regenerate your site as the ids are not stable.
showVisitedLinks = false
# Hide heading above the shortcut menu.
# Default: false
# The title for the heading can be overwritten in your i18n files. See Hugo's
# documentation how to do this.
disableShortcutsTitle = false
# Hide the language switcher.
# Default: false
# If you have more than one language configured, a language switcher is
# displayed in the lower part of the menu. This option lets you explicitly
# turn this behavior off.
disableLanguageSwitchingButton = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Hidden pages
# These options configure how hidden pages are treated.
# A page flagged as hidden, is only removed from the main menu if you are
# currently not on this page or the hidden page is not part of current page's
# ancestors. For all other functionality in Hugo a hidden page behaves like any
# other page if not otherwise configured.
# Hide hidden pages from search.
# Default: false
# Hides hidden pages from the suggestions of the search box and the dedicated
# search page.
disableSearchHiddenPages = false
# Hide hidden pages for web crawlers.
# Default: false
# Avoids hidden pages from showing up in the sitemap and on Google (et all),
# otherwise they may be indexed by search engines
disableSeoHiddenPages = true
# Hide hidden pages for taxonomies.
# Default: false
# Hides hidden pages from showing up on the taxonomy and terms pages. If this
# reduces term counters to zero, an empty but not linked term page will be
# created anyhow.
disableTagHiddenPages = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Content
# These options modify how your content is displayed.
# Title separator.
# Default: "::"
# Changes the title separator used when concatenating the page title with the
# site title. This is consistently used throughout the theme.
titleSeparator = "::"
# Breadcrumb separator.
# Default: ">"
# Changes the breadcrumb separator used in the topbars breadcrumb area and for
# search results and term pages.
breadcrumbSeparator = ">"
# Hide the root breadcrumb.
# Default: false
# The root breadcrumb is usually the home page of your site. Because this is
# always accessible by clicking on the logo, you may want to reduce clutter
# by removing this from your breadcrumb.
disableRootBreadcrumb = true
# Hide breadcrumbs term pages.
# Default: false
# If you have lots of taxonomy terms, the term pages may seem cluttered with
# breadcrumbs to you, so this is the option to turn off breadcrumbs on term
# pages. Only the page title will then be shown on the term pages.
disableTermBreadcrumbs = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Highlight
# These options configure how code is displayed.
# Hide copy-to-clipboard for inline code.
# Default: false
# This removes the copy-to-clipboard button from your inline code.
disableInlineCopyToClipBoard = true
# Always show copy-to-clipboard for block code.
# Default: false
# The theme only shows the copy-to-clipboard button if you hover over the code
# block. Set this to true to disable the hover effect and always show the
# button.
disableHoverBlockCopyToClipBoard = false
# Wrap for code blocks.
# Default: true
# By default lines of code blocks wrap around if the line is too long to be
# displayed on screen. If you dislike this behavior, you can reconfigure it
# here.
# Note that lines always wrap in print mode regardless of this option.
# This can be overridden in the page's frontmatter or given as a parameter to
# individual code blocks.
highlightWrap = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Include
# These options configure how the include shortcode works.
# What to do when path is not resolved.
# Default: ""
# You can control what should happen if a path can not be resolved to as
# a resource or via the file system. If not set, no output will be written
# for the unresolved path. If set to `warning` the same happens and an additional
# warning is printed. If set to `error` an error message is printed and the build
# is aborted.
include.errorlevel = ""
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Images
# These options configure how images are displayed.
# What to do when local image link is not resolved.
# Default: ""
# You can control what should happen if a local image can not be resolved to as
# a resource. If not set, the unresolved link is written as given into the resulting
# output. If set to `warning` the same happens and an additional warning is
# printed. If set to `error` an error message is printed and the build is
# aborted.
# Please note that this can not resolve files inside of your `static` directory.
image.errorlevel = ""
# Image effects.
# See the documentation for how you can even add your own arbitrary effects to
# the list.
# All effects can be overridden in the page's frontmatter or through URL parameter
# given to the image. See the documentation for details.
# Default: false
imageEffects.border = false
# Default: true
imageEffects.lazy = false
# Default: true
imageEffects.lightbox = true
# Default: false
imageEffects.shadow = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Links
# These options configure how links are displayed.
# What to do when local page link is not resolved.
# Default: ""
# You can control what should happen if a local link can not be resolved to a
# page. If not set, the unresolved link is written as given into the resulting
# output. If set to `warning` the same happens and an additional warning is
# printed. If set to `error` an error message is printed and the build is
# aborted.
# Please note that with Hugo < 0.123.0 + `uglyURLs=true` this can lead to false
# negatives.
link.errorlevel = ""
# How to open external links.
# Default: "_blank"
# For external links you can define how they are opened in your browser. All
# values for the HTML `target` attribute of the `a` element are allowed. The
# default value opens external links in a separate browser tab. If you want
# to open those links in the same tab, use "_self".
externalLinkTarget = "_self"
# Generate link URLs the Hugo way.
# Default: false
# If set to true, the theme behaves like a standard Hugo installation and
# appends no index.html to prettyURLs. As a trade off, your build project will
# not be servable from the file system.
disableExplicitIndexURLs = false
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# MathJax
# These options configure how math formulae are displayed.
# Initialization options for MathJax.
# Default: not set
# A JSON value. See the MathJaxdocumentation for possible parameter.
# This can be overridden in the page's frontmatter.
mathJaxInitialize = "{}"
# Only load MathJax if needed.
# Default: true
# If a Math shortcode is found, the option will be ignored and
# MathJax will be loaded regardlessly. The option is still useful in case you
# are using scripting to set up your graph. In this case no shortcode or
# codefence is involved and the library is not loaded by default. In this case
# you can set `disableMathJax=false` in your frontmatter to force the library to
# be loaded.
# This can be overridden in the page's frontmatter.
disableMathJax = true
# URL for external MathJax library.
# Default: not set
# Specifies the remote location of the MathJax library. By default the shipped
# version will be used.
# This can be overridden in the page's frontmatter.
customMathJaxURL = "" # "https://unpkg.com/mathjax/es5/tex-mml-chtml.js"
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# Mermaid
# These options configure how Mermaid graphs are displayed.
# Make graphs panable and zoomable
# Default: false
# For huge graphs it can be helpful to make them zoomable. Zoomable graphs come
# with a reset button for the zoom.
# This can be overridden in the page's frontmatter or given as a parameter to
# individual graphs.
mermaidZoom = false
# Initialization options for Mermaid.
# Default: not set
# A JSON value. See the Mermaid documentation for possible parameter.
# This can be overridden in the page's frontmatter.
mermaidInitialize = "{ \"securityLevel\": \"loose\" }"
# Only load Mermaid if needed.
# Default: true
# If a Mermaid shortcode or codefence is found, the option will be ignored and
# Mermaid will be loaded regardlessly. The option is still useful in case you
# are using scripting to set up your graph. In this case no shortcode or
# codefence is involved and the library is not loaded by default. In this case
# you can set `disableMermaid=false` in your frontmatter to force the library to
# be loaded.
# This can be overridden in the page's frontmatter.
disableMermaid = false
# URL for external Mermaid library.
# Default: not set
# Specifies the remote location of the Mermaid library. By default the shipped
# version will be used.
# This can be overridden in the page's frontmatter.
customMermaidURL = "" # "https://unpkg.com/mermaid/dist/mermaid.min.js"
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
# OpenApi
# These options configure how OpenAPI specifications are displayed.
# Only load OpenAPI if needed.
# Default: true
# If a OpenAPI shortcode is found, the option will be ignored and
# OpenAPI will be loaded regardlessly. The option is still useful in case you
# are using scripting to set up your graph. In this case no shortcode or
# codefence is involved and the library is not loaded by default. In this case
# you can set `disableOpenapi=false` in your frontmatter to force the library to
# be loaded.
# This can be overridden in the page's frontmatter.
disableOpenapi = true
# URL for external OpenAPI library.
# Default: not set
# Specifies the remote location of the OpenAPI library. By default the shipped
# version will be used.
# This can be overridden in the page's frontmatter.
customOpenapiURL = "" # "https://unpkg.com/swagger-ui-dist/swagger-ui-bundle.js"
[lightGallery]
enable = true
[bootstrap]
enable = true

View File

@ -0,0 +1,27 @@
{
"content-en": {
"src": [
"src/content/en/**/*.md"
],
"options": {
"output": "C:\\Users\\mc007\\Desktop\\ph3\\ph-site\\content\\en",
"debug": false,
"cache": true,
"watchContent": true,
"module": "osr-site",
"profile": "C:\\Users\\mc007\\Desktop\\ph3\\ph-site\\.osrl.json",
"root": "C:\\Users\\mc007\\Desktop\\ph3\\ph-site\\src\\content\\en",
"env": "library",
"language": "osr",
"format": "html",
"sourceLanguage": "en",
"logLevel": "debug",
"variables": {
"cwd": "C:\\Users\\mc007\\Desktop\\ph3\\ph-site",
"targetLanguage": "en",
"sourceLanguage": "en",
"i18n": "C:\\Users\\mc007\\Desktop\\osr/i18n-store/store-en.json"
}
}
}
}

82
config/machines.json Normal file
View File

@ -0,0 +1,82 @@
{
"sheetpressOld": [
"products/sheetpress/cassandra",
"products/sheetpress/cassandra-light",
"products/sheetpress/cassandra-mini",
"products/sheetpress/components/sprcb-650-max"
],
"sheetpress": [
"products/sheetpress/cassandra-light",
"products/sheetpress/cassandra-mini",
"products/sheetpress/components/sprcb-650",
"products/sheetpress/cassandra-edcsm",
"products/sheetpress/sheetpress-cell-rcA-x"
],
"injectors": [
"products/injection/katbot",
"products/injection/katbot-pro",
"products/injection/katbot-pro-mega-beta",
"products/injection/myriad-spring",
"products/injection/elena",
"products/injection/elena-zmax",
"products/injection/elena-zmax-motor-mod3"
],
"systems": [
"products/extrusion/systems/filament",
"products/extrusion/systems/pelletizer"
],
"extruders": [
"products/extrusion/components/202_FilamentHousing",
"products/extrusion/components/1100_Moulds/130x130x90-M10-L36",
"products/extrusion/components/101_lucy",
"products/extrusion/components/102_lucy-mini",
"products/extrusion/lydia-mini",
"products/extrusion/lydia-v3.5",
"products/extrusion/lydia-v4.5",
"products/extrusion/lydia-v4.6-ex",
"products/extrusion/components/102_lucy-mini",
"products/extrusion/lydia-print-head-hydra"
],
"shredders": [
"products/shredder-ext/Obelix-XM-300",
"products/shredder-ext/Obelix-XM-500",
"products/shredder/idefix",
"products/shredder/obelix",
"products/shredder/components/shredder_v31-light",
"products/shredder/asterix-pp",
"products/shredder/asterix-sm",
"products/shredder/asterix-sm-morren",
"products/zoe",
"products/extrusion/lydia-v3.8-lab"
],
"current2": [
"products/extrusion/lydia-v3.5",
"products/extrusion/lydia-v4.6-ex",
"products/injection/katbot-pro",
"products/injection/elena-zmax",
"products/injection/myriad-spring"
],
"current": [
"products/sheetpress/components/sprcb-650-light",
"products/sheetpress/cassandra-edczmax-rc1",
"products/injection/katbot-pro-mega-beta",
"products/extrusion/lydia-v3.5"
],
"test2": [],
"test": [
"products/shredder/idefix",
"products/shredder/obelix",
"products/injection/katbot-pro-mega-beta",
"products/extrusion/lydia-v3.5",
"products/sheetpress/cassandra-edczmax",
"products/sheetpress/components/sprcb-650-max",
"products/sheetpress/components/sprcb-650-light",
"products/extrusion/lydia-v4.5",
"products/injection/elena-zmax-motor-mod3",
"products/injection/myriad-spring",
"products/sheetpress/sheetpress-cell-rcA-x"
],
"thomas": [
"products/extrusion/lydia-v3.5"
]
}

9
content/de/_index.md Normal file
View File

@ -0,0 +1,9 @@
---
title: häuser
---
[Products](./product/)
[Projects](./project/)
[Retail](./retail/)

38
content/de/about.md Normal file
View File

@ -0,0 +1,38 @@
---
layout: about
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
philosophy:
enable: false
philosophy_item:
- title: Our Mission
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Approach
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Philosophy
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
about:
enable: true
service:
enable: true
section: service
show_item: 3
team:
enable: true
section: team
show_item: 3
title: Über
---

7
content/de/contact.md Normal file
View File

@ -0,0 +1,7 @@
---
layout: contact
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Kontakt
---

View File

@ -0,0 +1,31 @@
---
description: Internal pages
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
weight: 1
title: Praktikant
---
## Tests
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### Nav
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### i18n
``` Benutzerdefinierter Filter```
- Language :
- srcLanguage :
## Custom Tag
## Custom Tag
- [German](/de/intern)
- [English](/en/intern)
- [French](/fr/intern)

View File

@ -0,0 +1,64 @@
---
{}
---
---
title_i18n : "Intern"
description: "Internal pages"
bg_image_webp: "images/backgrounds/page-title.webp"
bg_image: "images/backgrounds/page-title.jpg"
weight: 1
---
```mermaid
graph TD
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A1[Design] --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1[CAD] --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1[Documentation] --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1[Collaboration Architecture] --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1[Enterprise] --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1[Build] --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
A --> A1
A --> B1
A --> C1
A --> D1
A --> E1
A --> F1

View File

@ -0,0 +1,58 @@
---
title_i18n : "Mermaid"
---
```mermaid
graph TB
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A --> A1[Design]
A --> B1[CAD]
A --> C1[Documentation]
A --> D1[Collaboration Architecture]
A --> E1[Enterprise]
A --> F1[Build]
A1 --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1 --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1 --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1 --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1 --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1 --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
```

View File

@ -0,0 +1,11 @@
---
subtitle: Products23
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Produkte
keywords: Extruder, Schredder, Recycling, Katbot
---
Produkte
{{% children depth="999" showhidden="false" %}}

View File

@ -0,0 +1,51 @@
---
description: Plastic Extruder
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
image_webp: images/products/extruders/bg.jpg
image: images/products/extruders/bg.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: true
summary: Plastic extrusion machines for education, prototyping and small productions
title: Strangpressen
---
## Plastic Extrusion Machines
## Plastic Extrusion Machines
Kunststoff-Extruder-Maschinen
<hr/>
prices : 1800 - 12002 Euro
language :
srcLanguage :
<div class='exception'><h2 class=header>TypeError [ERR_INVALID_ARG_TYPE]: The &quot;path&quot; argument must be of type string or an instance of Buffer or URL. Received undefined</h2>
<span class=source> at statSync (node:fs:1658:10)</span><br />
<span class=source> at Object.sync [as exists] (C:\Users\mc007\Desktop\osr\osrl\node_modules\@plastichub\fs\exists.js:18:34)</span><br />
<span class=our-source> at module.exports (.\osr\commons\xlsx.osr.js:6:18)</span><br />
<span class=source> at runJSExpressionEx (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:144:130)</span><br />
<span class=source> at Object.&lt;anonymous&gt; (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:187:63)</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:8:71</span><br />
<span class=unknown> at new Promise (&lt;anonymous&gt;)</span><br />
<span class=source> at __awaiter (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:4:12)</span><br />
<span class=source> at Object.render (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:179:20)</span><br />
<span class=source> at Tag.render (C:\Users\mc007\Desktop\osr\osrl\liquidjs\template\tag\tag.js:22:31)</span><br />
<span class=unknown> at render.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:23:36</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at fulfilled (C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:5:58)</span><br /></div>
## Galerie
{{< gallery dir="images/products/extruders/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,118 @@
---
description: Plastic Injection Machines
bg_image_webp: images/products/injectors/bg.jpg
bg_image: images/products/injectors/bg.jpg
image_webp: images/products/injectors/overview.jpg
image: images/products/injectors/overview.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Injection_Machines
client: Universities, R&D Services, Maker Industry
prices: 1400 - 5000 Euro
built: 40+
summary: Plastic Injection Machines for Education, Prototyping and small productions
title: Einspritzdüsen
---
### Kunststoff-Spritzgießmaschinen für Ausbildung, Prototyping und kleine Produktionen
<table>
<thead>
<tr>
<th></th>
<th>KatBot Pro</th>
<th>Myriad</th>
<th>Elena-ZMAX-Motor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>25 Kg</td>
<td>40 Kg</td>
<td>40 Kg</td>
</tr>
<tr>
<td>Package Dimensions</td>
<td>70 x 30 x 45 cm</td>
<td>120 x 20 x 140 cm</td>
<td>120 x 20 x 140 cm</td>
</tr>
<tr>
<td>Plunger Diameter</td>
<td>25 mm</td>
<td>25 mm</td>
<td>25 mm</td>
</tr>
<tr>
<td>Usable Barrel Length</td>
<td>35cm</td>
<td>65 cm</td>
<td>70 cm</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>220V / 480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Ceramic</td>
<td>5 (300W) / Ceramic</td>
<td>7 (300W) / Ceramic</td>
</tr>
<tr>
<td>Temperature Controller</td>
<td>2x RexC100</td>
<td>2x RexC100</td>
<td>3x RexC100</td>
</tr>
<tr>
<td>Shot Size</td>
<td>120g</td>
<td>260g</td>
<td>600g</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
</tbody>
</table>
### KatBot Pro
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/katbotpro.jpg" >}}
</span>
### Myriad
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/myriad.jpg" >}}
</span>
### Elena-ZMAX - Motor
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/elenazmax.jpg" >}}
</span>
## Galerie
{{< gallery dir="images/products/injectors/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,102 @@
---
description: Plastic Press Machines
bg_image_webp: images/products/presses/bg.jpg
bg_image: images/products/presses/bg.jpg
image_webp: images/products/presses/all-edc.jpg
image: images/products/presses/all-edc.jpg
author: PlasticHub
tags:
- Product
category: Presses
client: Enthusiasts, Universities and R&D services
prices: 1400 - 4200 Euro
built: 30+
debug: false
debugPage: false
summary: Sheet press machines for education, prototyping and small productions
title: Bogenpressen
---
## Plastic Press Machines
## Plastic Press Machines
<table>
<thead>
<tr>
<th></th>
<th>Cassandra Mini</th>
<th>Cassandra EDC</th>
<th>Cassandra Max</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>70 Kg</td>
<td>120 Kg</td>
<td>450 Kg</td>
</tr>
<tr>
<td>Dimensions</td>
<td>45 x 45 x 80 cm</td>
<td>70 x 70 x 120 cm</td>
<td>170 x 170 x 180 cm</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>45 x 45 cm</td>
<td>65 x 65 cm</td>
<td>130 x 130 cm</td>
</tr>
<tr>
<td>Pressure</td>
<td>20 T</td>
<td>20 T</td>
<td>8 T</td>
</tr>
<tr>
<td>Heating Power</td>
<td>3 KW</td>
<td>6 KW</td>
<td>18 KW</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Max. Sheet Thickness</td>
<td>30 mm</td>
<td>30 mm</td>
<td>30 mm</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
<tr>
<td>Duration Per Sheet</td>
<td>30 Minutes</td>
<td>45 Minutes</td>
<td>60 Minutes</td>
</tr>
</tbody>
</table>
## Gallery
{{< gallery dir="images/products/presses/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,6 @@
---
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Projekte
---

View File

@ -0,0 +1,38 @@
---
title: OSR-Education-Kit
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/edc/bg.jpg
bg_image: images/project/edc/bg.jpg
image_webp: images/project/edc/osr-edc.webp
image: images/project/edc/osr-edc.jpg
client: OSR-Plastic
category: Education
status: In Progress
duration: 2 Years
---
## OSR - Education - Kit
<span style="align:center">
{{< image width="80%" position="center" src="/images/project/edc/bg2.jpg" >}}
</span>
**Brief:** Modular, open, accessible, extensible, flexible plastic processing benchtop system, featuring a shredder, grinder, extruder, filament winder, pelletizer, automatic injection clamp.
**Status:** In development
**Scope:** School, Labs, Fablabs, Makerspaces
**Variants:** Small | Medium | Large
**Release date:** Mid 2024
### References
- [Sources](https://git.osr-plastic.org/osr-plastic/osr-edu-kit)
- [Download](https://files.osr-plastic.org/files/osr-edu-kit/)
- [Specs](https://git.osr-plastic.org/osr-plastic/osr-edu-kit/src/branch/master/documents/machines)
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
<hr/>
<br/>
<br/>
<br/>

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Platform
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/mancave.jpg
bg_image: images/project/mancave.jpg
image_webp: images/project/osr-plastic-icons-rec.webp
image: images/project/osr-plastic-icons-rec.jpg
client: OSR-Plastic
category: Platform
status: In Progress
duration: 5 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Printhead
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/printhead/bg.jpg
bg_image: images/project/printhead/bg.jpg
image_webp: images/project/printhead/icon.jpg
image: images/project/printhead/icon.jpg
client: OSR-Plastic
category: Platform
status: Mature
duration: 3 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,6 @@
---
title: Strangpressen
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,4 @@
---
title: Einspritzdüsen
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,740 @@
---
keywords:
- injection
- plastic
rGallery:
- name: anne2
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/anne2.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/anne2.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/anne2.webp"
meta:
format: jpeg
width: 6000
height: 8000
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:4:4
isProgressive: true
resolutionUnit: inch
hasProfile: true
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 8000
description: 8000px
Image Width:
value: 6000
description: 6000px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:4:4 (1 1)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
description: "72"
YResolution:
description: "72"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Anne Title
Make:
description: Blackview
Model:
description: BV9800Pro
Orientation:
value: 1
description: top-left
ResolutionUnit:
value: 2
description: inches
Software:
description: GIMP 2.10.38
DateTime:
description: 2024:06:09 12:27:21
YCbCrPositioning:
value: 2
description: co-sited
Exif IFD Pointer:
value: 616
description: 616
GPS Info IFD Pointer:
value: 1284
description: 1284
ExposureTime:
description: 1/33
FNumber:
description: f/1.7
ExposureProgram:
description: Undefined
ISOSpeedRatings:
value: 368
description: 368
ExifVersion:
description: "0220"
DateTimeOriginal:
description: 2024:06:09 11:49:02
DateTimeDigitized:
description: 2024:06:09 11:49:02
ComponentsConfiguration:
description: ""
ExposureBiasValue:
description: "0"
MeteringMode:
value: 2
description: CenterWeightedAverage
LightSource:
value: 255
description: Other light source
Flash:
description: Flash did not fire
FocalLength:
description: 4.7 mm
SubSecTime:
description: "74"
SubSecTimeOriginal:
description: "74"
SubSecTimeDigitized:
description: "74"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 1
description: sRGB
PixelXDimension:
value: 6000
description: 6000
PixelYDimension:
value: 8000
description: 8000
ExposureMode:
description: Auto exposure
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
description: Unknown
SceneCaptureType:
description: Standard
GPSLatitudeRef:
description: North latitude
GPSLatitude:
description: 40.913512499999996
GPSLongitudeRef:
description: East longitude
GPSLongitude:
description: 0.527343888888889
GPSAltitude:
description: 0 m
File Format:
description: "3"
Model Version:
description: "4"
Coded Character Set:
description: UTF-8
Caption/Abstract:
description: Anne Title
Copyright Notice:
description: dgfhdfgh
Keywords:
description: anne,plastichub
Record Version:
description: "4"
about:
value: ""
description: ""
DocumentID:
value: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
description: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
InstanceID:
value: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
description: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
OriginalDocumentID:
value: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
description: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
Format:
value: image/jpeg
description: image/jpeg
API:
value: "2.0"
description: "2.0"
Platform:
value: Windows
description: Windows
TimeStamp:
value: "1717928851014491"
description: "1717928851014491"
Version:
value: 2.10.38
description: 2.10.38
CreatorTool:
value: GIMP 2.10
description: GIMP 2.10
MetadataDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
ModifyDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
Rating:
value: "3"
description: "3"
History:
description: "action: saved; changed: /metadata; instanceID:
xmp.iid:aced4bfe-7db4-42ab-a01e-7a7a41bf61e7; softwareAgent: Gimp
2.10 (Windows); when: 2024-06-09T12:26:28, action: saved; changed:
/; instanceID: xmp.iid:363d3e5f-9f08-4a6b-b237-764f7fecfeaf;
softwareAgent: Gimp 2.10 (Windows); when: 2024-06-09T12:27:31"
rights:
description: dgfhdfgh
subject:
description: anne,plastichub
PersonInImage:
description: anne
title:
description: Anne Title
description:
description: Anne Title
Preferred CMM type:
value: lcms
description: lcms
Profile Version:
value: 4.4.0
description: 4.4.0
Profile/Device class:
value: mntr
description: Display Device profile
Color Space:
value: "RGB "
description: "RGB "
Connection Space:
value: "XYZ "
description: "XYZ "
ICC Profile Date:
value: 2024-06-09T10:25:27.000Z
description: 2024-06-09T10:25:27.000Z
ICC Signature:
value: acsp
description: acsp
Primary Platform:
value: MSFT
description: Microsoft
Device Manufacturer:
value: "\0\0\0\0"
description: "\0\0\0\0"
Device Model Number:
value: "\0\0\0\0"
description: "\0\0\0\0"
Rendering Intent:
description: Perceptual
Profile Creator:
value: lcms
description: lcms
ICC Description:
value: GIMP built-in sRGB
description: GIMP built-in sRGB
ICC Copyright:
value: Public Domain
description: Public Domain
ICC Device Manufacturer for Display:
value: GIMP
description: GIMP
ICC Device Model Description:
value: sRGB
description: sRGB
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: Anne Title
alt: "Anne Title - "
width: 6000
height: 8000
title: Anne Title
- name: latest
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latest.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latest.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latest.webp"
meta:
format: jpeg
width: 1980
height: 3565
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3565
description: 3565px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
ImageDescription:
description: Katbot
Make:
description: SONY
Model:
description: ILCE-7M3
Orientation:
value: 1
description: top-left
XResolution:
description: "350"
YResolution:
description: "350"
ResolutionUnit:
value: 2
description: inches
Exif IFD Pointer:
value: 466
description: 466
ExposureTime:
description: 1/250
FNumber:
description: f/4.5
ExposureProgram:
value: 1
description: Manual
ISOSpeedRatings:
value: 640
description: 640
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:04:03 13:10:12
DateTimeDigitized:
description: 2020:04:03 13:10:12
BrightnessValue:
description: "6.62265625"
ExposureBiasValue:
description: "0"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
value: 1
description: Daylight
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 40 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 3565
description: 3565
WhiteBalance:
value: 1
description: Manual white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 40
description: 40
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-04-03T13:10:12
description: 2020-04-03T13:10:12
subject:
description: injection
title:
description: Katbot
description:
description: Katbot
LastKeywordXMP:
description: injection
FileType:
value: jpeg
description: JPEG
keywords:
- injection
description: Katbot
alt: Katbot - einspritzung
width: 1980
height: 3565
title: Katbot
- name: latestx
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latestx.jp\
g"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latestx.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latestx.webp"
meta:
format: jpeg
width: 2216
height: 3936
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3936
description: 3936px
Image Width:
value: 2216
description: 2216px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 350
description: "350"
YResolution:
value: 350
description: "350"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Katbot-Open
Make:
description: SONYa
Model:
description: ILCE-7M3
Exif IFD Pointer:
value: 394
description: 394
ExposureTime:
description: 1/40
FNumber:
description: f/4
ExposureProgram:
value: 2
description: Normal program
ISOSpeedRatings:
value: 1250
description: 1250
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:03:19 16:10:20
DateTimeDigitized:
description: 2020:03:19 16:10:20
BrightnessValue:
description: "5.15"
ExposureBiasValue:
description: "1"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
description: Unknown
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 31 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 31
description: 31
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-03-19T16:10:20
description: 2020-03-19T16:10:20
subject:
description: injection,katbot-tags
title:
description: Katbot-Open
description:
description: Katbot-Open
LastKeywordXMP:
description: injection,katbot-tags
FileType:
value: jpeg
description: JPEG
keywords:
- injection
- katbot-tags
description: Katbot-Open
alt: Katbot-Open - injektion, Katbot-Tags
width: 2216
height: 3936
title: Katbot-Open
title: "Katbot-Pro"
author: PlasticHub
description: "Arbor injection machine that provides comfortable and precise injection of plastic!"
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Katbot-Pro</h1>
<p class="fs-3">Arbor Injektionsmaschine, die bequemes und präzises Einspritzen von Kunststoff ermöglicht!</p>
<p class="fs-2 text-danger">Preis: 1678 Euro</p>
<ul class="list-unstyled">
<ul>
<li>Alle Teile werden mit modernen CNC- und Handmaschinen präzise gefertigt</li>
<li>Sanftes und präzises Eintauchen</li>
<li>Der Stößel hat eine austauschbare Bronzespitze</li>
<li>2 Formschnittstellen: Konus für Presse und M20-Gewindeschnittstelle</li>
<li>Hitzeschild und Isolierung</li>
<li>Stufenlose Einstellung der Formhöhe</li>
<li>Führungsstifte und Schlitze für die Form</li>
<li>Übersetzung 1:1</li>
<li>Schußgröße: 145G</li>
<li>Schnelle Formklemmung</li>
<li>Absperrventil</li>
<li>Meistens Edelstahl, Aluminium</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Arbor injection machine that provides fast, repeatable, comfortable, safe and precise injection of plastic!</p>
<h4 id="highlightsunddetails">Highlights und Details</h4>
<ul>
<li>All parts are precision manufactured, using modern CNC and manual machines</li>
<li>Smooth and precise plunging experience</li>
<li>The plunger has a replaceable bronze tip</li>
<li>2 mold interfaces: cone for press, and M20 thread interface</li>
<li>Heat-shield and insulation</li>
<li>Step-less mould height adjustment</li>
<li>Mould guide pins and slots</li>
<li>Transmission 1:1</li>
<li>Shot size: 145G</li>
<li>Quick Clamping</li>
<li>Shutoff valve</li>
<li>Mostly Stainless, Aluminum</li>
</ul>
<h4 id="services">Services</h4>
<ul>
<li>After - Sales Service</li>
<li>3 years Warranty</li>
<li>Cheap replacements for consumables</li>
<li>Customization to user needs</li>
<li>Mold design and fabrication</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"> <h4 style="text-align: center;">Abmessungen</h4>
<a href="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
<p style="text-align: center">
<img style="max-height:500px" src="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
</p>
</a>
<hr/>
</div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spezifikation</h4>
<table>
<thead>
<tr>
<th>Variante</th>
<th>Weinlese-Deluxe</th>
</tr>
</thead>
<tbody>
<tr>
<td>Gewicht</td>
<td>27 kg</td>
</tr>
<tr>
<td>Abmessungen der Verpackung</td>
<td>70 x 45 x 45 cm</td>
</tr>
<tr>
<td>Kolben-Durchmesser</td>
<td>25 mm</td>
</tr>
<tr>
<td>Nutzbare Lauflänge</td>
<td>Bis zu 45 cm</td>
</tr>
<tr>
<td>Unterstützte Spannung</td>
<td>220V / 110V</td>
</tr>
<tr>
<td>Eingabe Flockengröße</td>
<td>Klein - Mittel</td>
</tr>
<tr>
<td>Übertragung</td>
<td>1: 1</td>
</tr>
<tr>
<td>Schnittstelle zur Form</td>
<td>M20 Gewinde / Konusdüse</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Keramik</td>
</tr>
<tr>
<td>Temperaturregler</td>
<td>2 - RexC-100</td>
</tr>
<tr>
<td>Schrotgröße</td>
<td>145g</td>
</tr>
<tr>
<td>Eigenschaften</td>
<td>Absperrventil, einstellbare Formhöhe, Schnellspannvorrichtung</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Ressourcen
- [ Herunterladen ](https://files.osr-plastic.org/files/osr-machines/injection/katbot-pro-mega-beta)
- [ 3D-Vorschau ](https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/resources/edrawings.html)
- [ Quellcode-Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/injection/katbot-pro-mega-beta)
<hr/>
<h3>Versand</h3>
<b> Versandgebühren innerhalb Europas </b>: 100 Euro <br/>
<b>Geschätzte Versandgebühren außerhalb von Europa </b>: 350 Euro
<h3>Zahlungsbedingungen</h3>
<b>Industrielle Maschinen</b> : 100% der Gesamtkosten der Maschine(n) sind zum Zeitpunkt der Bestellung zu zahlen.<br/>
<b>Selbst hergestellte Maschinen</b> <br/>
70% der Gesamtkosten der Maschine(n), die zum Zeitpunkt der Bestellung zu zahlen sind.
Die verbleibenden 30% + Transportkosten sind bei Erhalt der Tracking-Nummer der Sendung zu zahlen (keine Maschine verlässt die Werkstatt ohne vollständige
zahlung).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Bogenpresse
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,779 @@
---
keywords:
- ""
rGallery:
- name: perspective-1h1c-ex
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e-1h1c-ex.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective-1h1c-ex.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective-1h1c-ex.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: perspective
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly-2x1.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly-2x1.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: shop-press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/shop-press\
-assembly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/shop-press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/shop-press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
rGalleryRenderings:
- name: array-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings/array-2x1.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//20/webp/ar\
ray-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//webp/\
array-2x1.webp"
meta:
format: jpeg
width: 1398
height: 1080
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1080
description: 1080px
Image Width:
value: 1398
description: 1398px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1398
height: 1080
title: ""
- name: edc-pers-bare
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings/edc-pers-bare\
.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//20/webp/ed\
c-pers-bare.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//webp/\
edc-pers-bare.webp"
meta:
format: jpeg
width: 1398
height: 1080
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1080
description: 1080px
Image Width:
value: 1398
description: 1398px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1398
height: 1080
title: ""
- name: edc-pers-closed
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings/edc-pers-clos\
ed.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//20/webp/ed\
c-pers-closed.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//webp/\
edc-pers-closed.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
- name: edc-pers-open
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings/edc-pers-open\
.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//20/webp/ed\
c-pers-open.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//webp/\
edc-pers-open.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
- name: perspective-bare
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings/perspective-b\
are.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//20/webp/pe\
rspective-bare.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/renderings//webp/\
perspective-bare.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 120
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 120
description: "120"
YResolution:
value: 120
description: "120"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
title: "Sheetpress Cassandra - EDC650"
author: PlasticHub
description: "Small sheetpress for small and medium size parts. Ideal for small series and prototyping."
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress Cassandra - EDC650</h1>
<p class="fs-3">Kleine Bogenpresse für kleine und mittelgroße Teile. Ideal für Kleinserien und Prototyping.</p>
<p class="fs-2 text-danger">Preis: Euro</p>
<ul class="list-unstyled">
<ul>
<li>Blechdicke bis zu 30 mm</li>
<li>15T Druck</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Flexible, modular dual sheetpress, including a heat and cooling press.</p>
<h2 id="detailsfeatures">Details / Features</h2>
<ul>
<li>Sheet thickness up to 30mm</li>
<li>15T of pressure</li>
<li>Stackable and interlockable (600x1300cm sheets)</li>
<li>cartridge heaters are embedded in the heat plates, enabling 30% better heat efficiency</li>
<li>Press plate options: heating, passive or active cooling</li>
<li>the hydraulic jack has a pneumatic port, to use a compressor instead</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spezifikation</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Kassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Druck</td>
<td>15T - Hydraulischer Wagenheber mit pneumatischem Antrieb</td>
</tr>
<tr>
<td>Presse - Plattengröße</td>
<td>65cm - 120cm</td>
</tr>
<tr>
<td>Presse - Platten</td>
<td>2-3</td>
</tr>
<tr>
<td>Optionen</td>
<td>2 aktive Kühlplatten</td>
</tr>
<tr>
<td>Blattgröße</td>
<td>60cm</td>
</tr>
<tr>
<td>Elektrizität</td>
<td>220V</td>
</tr>
<tr>
<td>Strom</td>
<td>6 - 12 KW</td>
</tr>
<tr>
<td>Status</td>
<td>Ausgereift</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Revision A)</td>
</tr>
<tr>
<td>Lizenz</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Gewicht</td>
<td>120 - 240 kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
## Renderings
### Ressourcen
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Herunterladen ](https://files.osr-plastic.org/files/osr-machines/sheetpress/cassandra-edczmax-rc1)
- [ 3D-Vorschau ](https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/resources/edrawings.html)
- [ Quellcode-Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/cassandra-edczmax-rc1)
<hr/>
<h3>Zahlungsbedingungen</h3>
<b>Industrielle Maschinen</b> : 100% der Gesamtkosten der Maschine(n) sind zum Zeitpunkt der Bestellung zu zahlen.<br/>
<b>Selbst hergestellte Maschinen</b> :
70% der Gesamtkosten der Maschine(n), die zum Zeitpunkt der Bestellung zu zahlen sind.
Die verbleibenden 30% + Transportkosten sind bei Erhalt der Tracking-Nummer der Sendung zu zahlen (keine Maschine verlässt die Werkstatt ohne vollständige
zahlung).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress - Komponenten
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,239 @@
---
keywords:
- ""
rGallery:
- name: DSC01067
url: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery/DSC01067.j\
pg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//20/webp\
/DSC01067.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//we\
bp/DSC01067.webp"
meta:
format: jpeg
width: 1980
height: 1323
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1323
description: 1323px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
Orientation:
value: 1
description: top-left
XResolution:
description: "72"
YResolution:
description: "72"
ResolutionUnit:
value: 2
description: inches
YCbCrPositioning:
value: 1
description: centered
Exif IFD Pointer:
value: 102
description: 102
ExifVersion:
description: "0210"
ComponentsConfiguration:
description: ""
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 1323
description: 1323
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1980
height: 1323
title: ""
title: "Sheetpress cell module - 650"
author: PlasticHub
description: ""
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress cell module - 650</h1>
<p class="fs-3"></p>
<p class="fs-2 text-danger">Preis: 4800 Euro</p>
<ul class="list-unstyled">
</ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<h1 id="sheetpressmodule650">Sheetpress Module - 650</h1>
<h2 id="featuresdetails">Features / Details</h2>
<ul>
<li>15mm 5038 Aluminum plates, precision cut and ground</li>
<li>9 Cartridge heaters, 12mm diameter, 80mm long, 300W, embedded in the heat-plate for maximum contact and lifespan</li>
<li>the module is compatible with <a href="https://shop.osr-plastic.org/sheetpress/cassanda-light/">'Cassandra Light'</a>. Larger designs as a 2x2 arrangments are also available in the <a href="https://files.osr-plastic.org/files/osr-machines/sheetpress/">library</a></li>
<li>the lower support ribs can be removed</li>
<li>point to point temperature differences are within a 2 degree celsius range</li>
<li>warmup time - 220V : 20 minutes, 400V: 10 minutes</li>
<li>low heating oscillation, approximately every 15 seconds</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spezifikation</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Kassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Druck</td>
<td>15T - Hydraulischer Wagenheber mit pneumatischem Antrieb</td>
</tr>
<tr>
<td>Presse - Plattengröße</td>
<td>65cm</td>
</tr>
<tr>
<td>Presse - Platten</td>
<td>2-3</td>
</tr>
<tr>
<td>Optionen</td>
<td>2 aktive Kühlplatten</td>
</tr>
<tr>
<td>Blattgröße</td>
<td>60cm</td>
</tr>
<tr>
<td>Elektrizität</td>
<td>220V</td>
</tr>
<tr>
<td>Strom</td>
<td>6 - 9 KW</td>
</tr>
<tr>
<td>Status</td>
<td>Entwicklung</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Revision A)</td>
</tr>
<tr>
<td>Lizenz</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Gewicht</td>
<td>180 kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Ressourcen
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Herunterladen ](https://files.osr-plastic.org/files/osr-machines/sheetpress/components/sprcb-650-light)
- [ 3D-Vorschau ](https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/resources/edrawings.html)
- [ Quellcode-Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/components/sprcb-650-light)
<hr/>
<h3>Versand</h3>
<b> Versandgebühren innerhalb Europas </b>: 100 Euro <br/>
<h3>Zahlungsbedingungen</h3>
<b>Industrielle Maschinen</b> : 100% der Gesamtkosten der Maschine(n) sind zum Zeitpunkt der Bestellung zu zahlen.<br/>
<b>Selbst hergestellte Maschinen</b> <br/>
70% der Gesamtkosten der Maschine(n), die zum Zeitpunkt der Bestellung zu zahlen sind.
Die verbleibenden 30% + Transportkosten sind bei Erhalt der Tracking-Nummer der Sendung zu zahlen (keine Maschine verlässt die Werkstatt ohne vollständige
zahlung).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Schredder
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

9
content/en/_index.md Normal file
View File

@ -0,0 +1,9 @@
---
title: homes
---
[Products](./product/)
[Projects](./project/)
[Retail](./retail/)

38
content/en/about.md Normal file
View File

@ -0,0 +1,38 @@
---
layout: about
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
philosophy:
enable: false
philosophy_item:
- title: Our Mission
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Approach
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Philosophy
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
about:
enable: true
service:
enable: true
section: service
show_item: 3
team:
enable: true
section: team
show_item: 3
title: About
---

7
content/en/contact.md Normal file
View File

@ -0,0 +1,7 @@
---
layout: contact
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Contact Us
---

View File

@ -0,0 +1,31 @@
---
description: Internal pages
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
weight: 1
title: Intern
---
## Tests
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### Nav
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### i18n
``` Custom Filter```
- Language :
- srcLanguage :
## Custom Tag
## Custom Tag
- [German](/de/intern)
- [English](/en/intern)
- [French](/fr/intern)

View File

@ -0,0 +1,58 @@
---
title_i18n : "Mermaid"
---
```mermaid
graph TB
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A --> A1[Design]
A --> B1[CAD]
A --> C1[Documentation]
A --> D1[Collaboration Architecture]
A --> E1[Enterprise]
A --> F1[Build]
A1 --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1 --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1 --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1 --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1 --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1 --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
```

View File

@ -0,0 +1,11 @@
---
subtitle: Products23
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Products
keywords: Extruder, Shredder, Recycling, Katbot
---
Products
{{% children depth="999" showhidden="false" %}}

View File

@ -0,0 +1,51 @@
---
description: Plastic Extruder
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
image_webp: images/products/extruders/bg.jpg
image: images/products/extruders/bg.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: true
summary: Plastic extrusion machines for education, prototyping and small productions
title: Extruders
---
## Plastic Extrusion Machines
## Plastic Extrusion Machines
Plastic Extruder Machines
<hr/>
prices : 1800 - 12002 Euro
language :
srcLanguage :
<div class='exception'><h2 class=header>TypeError [ERR_INVALID_ARG_TYPE]: The &quot;path&quot; argument must be of type string or an instance of Buffer or URL. Received undefined</h2>
<span class=source> at statSync (node:fs:1658:10)</span><br />
<span class=source> at Object.sync [as exists] (C:\Users\mc007\Desktop\osr\osrl\node_modules\@plastichub\fs\exists.js:18:34)</span><br />
<span class=our-source> at module.exports (.\osr\commons\xlsx.osr.js:6:18)</span><br />
<span class=source> at runJSExpressionEx (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:144:130)</span><br />
<span class=source> at Object.&lt;anonymous&gt; (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:187:63)</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:8:71</span><br />
<span class=unknown> at new Promise (&lt;anonymous&gt;)</span><br />
<span class=source> at __awaiter (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:4:12)</span><br />
<span class=source> at Object.render (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:179:20)</span><br />
<span class=source> at Tag.render (C:\Users\mc007\Desktop\osr\osrl\liquidjs\template\tag\tag.js:22:31)</span><br />
<span class=unknown> at render.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:23:36</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at fulfilled (C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:5:58)</span><br /></div>
## Gallery
{{< gallery dir="images/products/extruders/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,118 @@
---
description: Plastic Injection Machines
bg_image_webp: images/products/injectors/bg.jpg
bg_image: images/products/injectors/bg.jpg
image_webp: images/products/injectors/overview.jpg
image: images/products/injectors/overview.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Injection_Machines
client: Universities, R&D Services, Maker Industry
prices: 1400 - 5000 Euro
built: 40+
summary: Plastic Injection Machines for Education, Prototyping and small productions
title: Injectors
---
### Plastic Injection Machines for Education, Prototyping and small productions
<table>
<thead>
<tr>
<th></th>
<th>KatBot Pro</th>
<th>Myriad</th>
<th>Elena-ZMAX-Motor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>25 Kg</td>
<td>40 Kg</td>
<td>40 Kg</td>
</tr>
<tr>
<td>Package Dimensions</td>
<td>70 x 30 x 45 cm</td>
<td>120 x 20 x 140 cm</td>
<td>120 x 20 x 140 cm</td>
</tr>
<tr>
<td>Plunger Diameter</td>
<td>25 mm</td>
<td>25 mm</td>
<td>25 mm</td>
</tr>
<tr>
<td>Usable Barrel Length</td>
<td>35cm</td>
<td>65 cm</td>
<td>70 cm</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>220V / 480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Ceramic</td>
<td>5 (300W) / Ceramic</td>
<td>7 (300W) / Ceramic</td>
</tr>
<tr>
<td>Temperature Controller</td>
<td>2x RexC100</td>
<td>2x RexC100</td>
<td>3x RexC100</td>
</tr>
<tr>
<td>Shot Size</td>
<td>120g</td>
<td>260g</td>
<td>600g</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
</tbody>
</table>
### KatBot Pro
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/katbotpro.jpg" >}}
</span>
### Myriad
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/myriad.jpg" >}}
</span>
### Elena-ZMAX - Motor
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/elenazmax.jpg" >}}
</span>
## Gallery
{{< gallery dir="images/products/injectors/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,102 @@
---
description: Plastic Press Machines
bg_image_webp: images/products/presses/bg.jpg
bg_image: images/products/presses/bg.jpg
image_webp: images/products/presses/all-edc.jpg
image: images/products/presses/all-edc.jpg
author: PlasticHub
tags:
- Product
category: Presses
client: Enthusiasts, Universities and R&D services
prices: 1400 - 4200 Euro
built: 30+
debug: false
debugPage: false
summary: Sheet press machines for education, prototyping and small productions
title: Sheet Presses
---
## Plastic Press Machines
## Plastic Press Machines
<table>
<thead>
<tr>
<th></th>
<th>Cassandra Mini</th>
<th>Cassandra EDC</th>
<th>Cassandra Max</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>70 Kg</td>
<td>120 Kg</td>
<td>450 Kg</td>
</tr>
<tr>
<td>Dimensions</td>
<td>45 x 45 x 80 cm</td>
<td>70 x 70 x 120 cm</td>
<td>170 x 170 x 180 cm</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>45 x 45 cm</td>
<td>65 x 65 cm</td>
<td>130 x 130 cm</td>
</tr>
<tr>
<td>Pressure</td>
<td>20 T</td>
<td>20 T</td>
<td>8 T</td>
</tr>
<tr>
<td>Heating Power</td>
<td>3 KW</td>
<td>6 KW</td>
<td>18 KW</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Max. Sheet Thickness</td>
<td>30 mm</td>
<td>30 mm</td>
<td>30 mm</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
<tr>
<td>Duration Per Sheet</td>
<td>30 Minutes</td>
<td>45 Minutes</td>
<td>60 Minutes</td>
</tr>
</tbody>
</table>
## Gallery
{{< gallery dir="images/products/presses/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,6 @@
---
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Projects
---

View File

@ -0,0 +1,38 @@
---
title: OSR-Education-Kit
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/edc/bg.jpg
bg_image: images/project/edc/bg.jpg
image_webp: images/project/edc/osr-edc.webp
image: images/project/edc/osr-edc.jpg
client: OSR-Plastic
category: Education
status: In Progress
duration: 2 Years
---
## OSR - Education - Kit
<span style="align:center">
{{< image width="80%" position="center" src="/images/project/edc/bg2.jpg" >}}
</span>
**Brief:** Modular, open, accessible, extensible, flexible plastic processing benchtop system, featuring a shredder, grinder, extruder, filament winder, pelletizer, automatic injection clamp.
**Status:** In development
**Scope:** School, Labs, Fablabs, Makerspaces
**Variants:** Small | Medium | Large
**Release date:** Mid 2024
### References
- [Sources](https://git.osr-plastic.org/osr-plastic/osr-edu-kit)
- [Download](https://files.osr-plastic.org/files/osr-edu-kit/)
- [Specs](https://git.osr-plastic.org/osr-plastic/osr-edu-kit/src/branch/master/documents/machines)
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
<hr/>
<br/>
<br/>
<br/>

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Platform
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/mancave.jpg
bg_image: images/project/mancave.jpg
image_webp: images/project/osr-plastic-icons-rec.webp
image: images/project/osr-plastic-icons-rec.jpg
client: OSR-Plastic
category: Platform
status: In Progress
duration: 5 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Printhead
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/printhead/bg.jpg
bg_image: images/project/printhead/bg.jpg
image_webp: images/project/printhead/icon.jpg
image: images/project/printhead/icon.jpg
client: OSR-Plastic
category: Platform
status: Mature
duration: 3 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,6 @@
---
title: Extruders
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,4 @@
---
title: Injectors
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,742 @@
---
keywords:
- injection
- plastic
rGallery:
- name: anne2
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/anne2.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/anne2.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/anne2.webp"
meta:
format: jpeg
width: 6000
height: 8000
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:4:4
isProgressive: true
resolutionUnit: inch
hasProfile: true
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 8000
description: 8000px
Image Width:
value: 6000
description: 6000px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:4:4 (1 1)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
description: "72"
YResolution:
description: "72"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Anne Title
Make:
description: Blackview
Model:
description: BV9800Pro
Orientation:
value: 1
description: top-left
ResolutionUnit:
value: 2
description: inches
Software:
description: GIMP 2.10.38
DateTime:
description: 2024:06:09 12:27:21
YCbCrPositioning:
value: 2
description: co-sited
Exif IFD Pointer:
value: 616
description: 616
GPS Info IFD Pointer:
value: 1284
description: 1284
ExposureTime:
description: 1/33
FNumber:
description: f/1.7
ExposureProgram:
description: Undefined
ISOSpeedRatings:
value: 368
description: 368
ExifVersion:
description: "0220"
DateTimeOriginal:
description: 2024:06:09 11:49:02
DateTimeDigitized:
description: 2024:06:09 11:49:02
ComponentsConfiguration:
description: ""
ExposureBiasValue:
description: "0"
MeteringMode:
value: 2
description: CenterWeightedAverage
LightSource:
value: 255
description: Other light source
Flash:
description: Flash did not fire
FocalLength:
description: 4.7 mm
SubSecTime:
description: "74"
SubSecTimeOriginal:
description: "74"
SubSecTimeDigitized:
description: "74"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 1
description: sRGB
PixelXDimension:
value: 6000
description: 6000
PixelYDimension:
value: 8000
description: 8000
ExposureMode:
description: Auto exposure
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
description: Unknown
SceneCaptureType:
description: Standard
GPSLatitudeRef:
description: North latitude
GPSLatitude:
description: 40.913512499999996
GPSLongitudeRef:
description: East longitude
GPSLongitude:
description: 0.527343888888889
GPSAltitude:
description: 0 m
File Format:
description: "3"
Model Version:
description: "4"
Coded Character Set:
description: UTF-8
Caption/Abstract:
description: Anne Title
Copyright Notice:
description: dgfhdfgh
Keywords:
description: anne,plastichub
Record Version:
description: "4"
about:
value: ""
description: ""
DocumentID:
value: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
description: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
InstanceID:
value: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
description: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
OriginalDocumentID:
value: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
description: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
Format:
value: image/jpeg
description: image/jpeg
API:
value: "2.0"
description: "2.0"
Platform:
value: Windows
description: Windows
TimeStamp:
value: "1717928851014491"
description: "1717928851014491"
Version:
value: 2.10.38
description: 2.10.38
CreatorTool:
value: GIMP 2.10
description: GIMP 2.10
MetadataDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
ModifyDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
Rating:
value: "3"
description: "3"
History:
description: "action: saved; changed: /metadata; instanceID:
xmp.iid:aced4bfe-7db4-42ab-a01e-7a7a41bf61e7; softwareAgent: Gimp
2.10 (Windows); when: 2024-06-09T12:26:28, action: saved; changed:
/; instanceID: xmp.iid:363d3e5f-9f08-4a6b-b237-764f7fecfeaf;
softwareAgent: Gimp 2.10 (Windows); when: 2024-06-09T12:27:31"
rights:
description: dgfhdfgh
subject:
description: anne,plastichub
PersonInImage:
description: anne
title:
description: Anne Title
description:
description: Anne Title
Preferred CMM type:
value: lcms
description: lcms
Profile Version:
value: 4.4.0
description: 4.4.0
Profile/Device class:
value: mntr
description: Display Device profile
Color Space:
value: "RGB "
description: "RGB "
Connection Space:
value: "XYZ "
description: "XYZ "
ICC Profile Date:
value: 2024-06-09T10:25:27.000Z
description: 2024-06-09T10:25:27.000Z
ICC Signature:
value: acsp
description: acsp
Primary Platform:
value: MSFT
description: Microsoft
Device Manufacturer:
value: "\0\0\0\0"
description: "\0\0\0\0"
Device Model Number:
value: "\0\0\0\0"
description: "\0\0\0\0"
Rendering Intent:
description: Perceptual
Profile Creator:
value: lcms
description: lcms
ICC Description:
value: GIMP built-in sRGB
description: GIMP built-in sRGB
ICC Copyright:
value: Public Domain
description: Public Domain
ICC Device Manufacturer for Display:
value: GIMP
description: GIMP
ICC Device Model Description:
value: sRGB
description: sRGB
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: Anne Title
alt: "Anne Title - "
width: 6000
height: 8000
title: Anne Title
- name: latest
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latest.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latest.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latest.webp"
meta:
format: jpeg
width: 1980
height: 3565
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3565
description: 3565px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
ImageDescription:
description: Katbot
Make:
description: SONY
Model:
description: ILCE-7M3
Orientation:
value: 1
description: top-left
XResolution:
description: "350"
YResolution:
description: "350"
ResolutionUnit:
value: 2
description: inches
Exif IFD Pointer:
value: 466
description: 466
ExposureTime:
description: 1/250
FNumber:
description: f/4.5
ExposureProgram:
value: 1
description: Manual
ISOSpeedRatings:
value: 640
description: 640
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:04:03 13:10:12
DateTimeDigitized:
description: 2020:04:03 13:10:12
BrightnessValue:
description: "6.62265625"
ExposureBiasValue:
description: "0"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
value: 1
description: Daylight
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 40 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 3565
description: 3565
WhiteBalance:
value: 1
description: Manual white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 40
description: 40
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-04-03T13:10:12
description: 2020-04-03T13:10:12
subject:
description: injection
title:
description: Katbot
description:
description: Katbot
LastKeywordXMP:
description: injection
FileType:
value: jpeg
description: JPEG
keywords:
- injection
description: Katbot
alt: Katbot - injection
width: 1980
height: 3565
title: Katbot
- name: latestx
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latestx.jp\
g"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latestx.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latestx.webp"
meta:
format: jpeg
width: 2216
height: 3936
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3936
description: 3936px
Image Width:
value: 2216
description: 2216px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 350
description: "350"
YResolution:
value: 350
description: "350"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Katbot-Open
Make:
description: SONYa
Model:
description: ILCE-7M3
Exif IFD Pointer:
value: 394
description: 394
ExposureTime:
description: 1/40
FNumber:
description: f/4
ExposureProgram:
value: 2
description: Normal program
ISOSpeedRatings:
value: 1250
description: 1250
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:03:19 16:10:20
DateTimeDigitized:
description: 2020:03:19 16:10:20
BrightnessValue:
description: "5.15"
ExposureBiasValue:
description: "1"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
description: Unknown
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 31 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 31
description: 31
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-03-19T16:10:20
description: 2020-03-19T16:10:20
subject:
description: injection,katbot-tags
title:
description: Katbot-Open
description:
description: Katbot-Open
LastKeywordXMP:
description: injection,katbot-tags
FileType:
value: jpeg
description: JPEG
keywords:
- injection
- katbot-tags
description: Katbot-Open
alt: Katbot-Open - injection,katbot-tags
width: 2216
height: 3936
title: Katbot-Open
title: "Katbot-Pro"
author: PlasticHub
description: "Arbor injection machine that provides comfortable and precise injection of plastic!"
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Katbot-Pro</h1>
<p class="fs-3">Arbor injection machine that provides comfortable and precise injection of plastic!</p>
<p class="fs-2 text-danger">Price: 1678 Euro</p>
<ul class="list-unstyled">
<ul>
<li>All parts are precision manufactured, using modern CNC and manual machines</li>
<li>Smooth and precise plunging experience</li>
<li>The plunger has a replaceable bronze tip</li>
<li>2 mold interfaces: cone for press, and M20 thread interface</li>
<li>Heat-shield and insulation</li>
<li>Step-less mould height adjustment</li>
<li>Mould guide pins and slots</li>
<li>Transmission 1:1</li>
<li>Shot size: 145G</li>
<li>Quick mould clamping</li>
<li>Shutoff valve</li>
<li>Mostly Stainless, Aluminum</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Arbor injection machine that provides fast, repeatable, comfortable, safe and precise injection of plastic!</p>
<h4 id="highlightsanddetails">Highlights and details</h4>
<ul>
<li>All parts are precision manufactured, using modern CNC and manual machines</li>
<li>Smooth and precise plunging experience</li>
<li>The plunger has a replaceable bronze tip</li>
<li>2 mold interfaces: cone for press, and M20 thread interface</li>
<li>Heat-shield and insulation</li>
<li>Step-less mould height adjustment</li>
<li>Mould guide pins and slots</li>
<li>Transmission 1:1</li>
<li>Shot size: 145G</li>
<li>Quick Clamping</li>
<li>Shutoff valve</li>
<li>Mostly Stainless, Aluminum</li>
</ul>
<h4 id="services">Services</h4>
<ul>
<li>After - Sales Service</li>
<li>3 years Warranty</li>
<li>Cheap replacements for consumables</li>
<li>Customization to user needs</li>
<li>Mold design and fabrication</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"> <h4 style="text-align: center;">Dimensions</h4>
<a href="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
<p style="text-align: center">
<img style="max-height:500px" src="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
</p>
</a>
<hr/>
</div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Specification</h4>
<table>
<thead>
<tr>
<th>Variant</th>
<th>Vintage Delux</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>27 Kg</td>
</tr>
<tr>
<td>Package Dimensions</td>
<td>70 x 45 x 45 cm</td>
</tr>
<tr>
<td>Plunger Diameter</td>
<td>25 mm</td>
</tr>
<tr>
<td>Usable Barrel Length</td>
<td>Up to 45 cm</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V / 110V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Transmission</td>
<td>1: 1</td>
</tr>
<tr>
<td>Mold Interface</td>
<td>M20 thread / Cone Nozzle</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Ceramic</td>
</tr>
<tr>
<td>Temperature Controller</td>
<td>2 RexC-100</td>
</tr>
<tr>
<td>Shotsize</td>
<td>145g</td>
</tr>
<tr>
<td>Features</td>
<td>Shutoff Valve, Adjustable Mould Height, Quick Clamping</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Resources
- [ Download ](https://files.osr-plastic.org/files/osr-machines/injection/katbot-pro-mega-beta)
- [ 3D Preview ](https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/resources/edrawings.html)
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/injection/katbot-pro-mega-beta)
<hr/>
<h3>Shipping</h3>
<b> Shipping fees within Europe </b>: 100 Euro <br/>
<b> Estimated shipping fees outside of Europe </b>: 350 Euro
<h3>Payment Terms</h3>
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
<b>Machines manufactured in-house</b> <br/>
70% of the total cost of the machine(s) to be paid at the moment of the order.
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
payment).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,774 @@
---
keywords:
- ""
rGallery:
- name: perspective-1h1c-ex
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e-1h1c-ex.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective-1h1c-ex.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective-1h1c-ex.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: perspective
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly-2x1.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly-2x1.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: shop-press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/shop-press\
-assembly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/shop-press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/shop-press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
rGalleryRenderings:
- name: array-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/array-2x1.\
jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/array-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/array-2x1.webp"
meta:
format: jpeg
width: 1398
height: 1080
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1080
description: 1080px
Image Width:
value: 1398
description: 1398px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1398
height: 1080
title: ""
- name: edc-pers-bare
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/edc-pers-b\
are.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/edc-pers-bare.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/edc-pers-bare.webp"
meta:
format: jpeg
width: 1398
height: 1080
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1080
description: 1080px
Image Width:
value: 1398
description: 1398px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1398
height: 1080
title: ""
- name: edc-pers-closed
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/edc-pers-c\
losed.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/edc-pers-closed.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/edc-pers-closed.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
- name: edc-pers-open
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/edc-pers-o\
pen.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/edc-pers-open.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/edc-pers-open.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
- name: perspective-bare
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e-bare.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective-bare.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective-bare.webp"
meta:
format: jpeg
width: 1988
height: 1536
space: srgb
channels: 3
depth: uchar
density: 120
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1536
description: 1536px
Image Width:
value: 1988
description: 1988px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 120
description: "120"
YResolution:
value: 120
description: "120"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1988
height: 1536
title: ""
title: "Sheetpress Cassandra - EDC650"
author: PlasticHub
description: "Small sheetpress for small and medium size parts. Ideal for small series and prototyping."
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress Cassandra - EDC650</h1>
<p class="fs-3">Small sheetpress for small and medium size parts. Ideal for small series and prototyping.</p>
<p class="fs-2 text-danger">Price: Euro</p>
<ul class="list-unstyled">
<ul>
<li>Sheet thickness up to 30mm</li>
<li>15T of pressure</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Flexible, modular dual sheetpress, including a heat and cooling press.</p>
<h2 id="detailsfeatures">Details / Features</h2>
<ul>
<li>Sheet thickness up to 30mm</li>
<li>15T of pressure</li>
<li>Stackable and interlockable (600x1300cm sheets)</li>
<li>cartridge heaters are embedded in the heat plates, enabling 30% better heat efficiency</li>
<li>Press plate options: heating, passive or active cooling</li>
<li>the hydraulic jack has a pneumatic port, to use a compressor instead</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Specification</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Cassandra EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pressure</td>
<td>15T Hydraulic Jack with Pneumatic Drive</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>65cm 120cm</td>
</tr>
<tr>
<td>Press Plates</td>
<td>2-3</td>
</tr>
<tr>
<td>Options</td>
<td>2 Active Cooling Plates</td>
</tr>
<tr>
<td>Sheet Size</td>
<td>60cm</td>
</tr>
<tr>
<td>Electricity</td>
<td>220V</td>
</tr>
<tr>
<td>Power</td>
<td>6 12 KW</td>
</tr>
<tr>
<td>Status</td>
<td>Mature</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Revision A)</td>
</tr>
<tr>
<td>License</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Weight</td>
<td>120 240 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Resources
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Download ](https://files.osr-plastic.org/files/osr-machines/sheetpress/cassandra-edczmax-rc1)
- [ 3D Preview ](https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/resources/edrawings.html)
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/cassandra-edczmax-rc1)
<hr/>
<h3>Payment Terms</h3>
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
<b>Machines manufactured in-house</b> :
70% of the total cost of the machine(s) to be paid at the moment of the order.
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
payment).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress - Components
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,241 @@
---
keywords:
- ""
rGallery:
- name: DSC01067
url: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery/DSC01067.j\
pg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//20/webp\
/DSC01067.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//we\
bp/DSC01067.webp"
meta:
format: jpeg
width: 1980
height: 1323
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1323
description: 1323px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
Orientation:
value: 1
description: top-left
XResolution:
description: "72"
YResolution:
description: "72"
ResolutionUnit:
value: 2
description: inches
YCbCrPositioning:
value: 1
description: centered
Exif IFD Pointer:
value: 102
description: 102
ExifVersion:
description: "0210"
ComponentsConfiguration:
description: ""
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 1323
description: 1323
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1980
height: 1323
title: ""
title: "Sheetpress cell module - 650"
author: PlasticHub
description: ""
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress cell module - 650</h1>
<p class="fs-3"></p>
<p class="fs-2 text-danger">Price: 4800 Euro</p>
<ul class="list-unstyled">
</ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<h1 id="sheetpressmodule650">Sheetpress Module - 650</h1>
<h2 id="featuresdetails">Features / Details</h2>
<ul>
<li>15mm 5038 Aluminum plates, precision cut and ground</li>
<li>9 Cartridge heaters, 12mm diameter, 80mm long, 300W, embedded in the heat-plate for maximum contact and lifespan</li>
<li>the module is compatible with <a href="https://shop.osr-plastic.org/sheetpress/cassanda-light/">'Cassandra Light'</a>. Larger designs as a 2x2 arrangments are also available in the <a href="https://files.osr-plastic.org/files/osr-machines/sheetpress/">library</a></li>
<li>the lower support ribs can be removed</li>
<li>point to point temperature differences are within a 2 degree celsius range</li>
<li>warmup time - 220V : 20 minutes, 400V: 10 minutes</li>
<li>low heating oscillation, approximately every 15 seconds</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Specification</h4>
<table>
<thead>
<tr>
<th>Name</th>
<th>Cassandra EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pressure</td>
<td>15T Hydraulic Jack with Pneumatic Drive</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>65cm</td>
</tr>
<tr>
<td>Press Plates</td>
<td>2-3</td>
</tr>
<tr>
<td>Options</td>
<td>2 Active Cooling Plates</td>
</tr>
<tr>
<td>Sheet Size</td>
<td>60cm</td>
</tr>
<tr>
<td>Electricity</td>
<td>220V</td>
</tr>
<tr>
<td>Power</td>
<td>6 9 KW</td>
</tr>
<tr>
<td>Status</td>
<td>Development</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Revision A)</td>
</tr>
<tr>
<td>License</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Weight</td>
<td>180 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Resources
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Download ](https://files.osr-plastic.org/files/osr-machines/sheetpress/components/sprcb-650-light)
- [ 3D Preview ](https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/resources/edrawings.html)
- [ Source Code Repository ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/components/sprcb-650-light)
<hr/>
<h3>Shipping</h3>
<b> Shipping fees within Europe </b>: 100 Euro <br/>
<h3>Payment Terms</h3>
<b>Industrial machines</b> : 100% of the total cost of the machine(s) to be paid at the moment of the order.<br/>
<b>Machines manufactured in-house</b> <br/>
70% of the total cost of the machine(s) to be paid at the moment of the order.
The 30% left + transport fees to be paid at reception of tracking number of the shipping (no machine leaves the workshop without full
payment).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Shredder
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

9
content/es/_index.md Normal file
View File

@ -0,0 +1,9 @@
---
title: viviendas
---
[Products](./product/)
[Projects](./project/)
[Retail](./retail/)

38
content/es/about.md Normal file
View File

@ -0,0 +1,38 @@
---
layout: about
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
philosophy:
enable: false
philosophy_item:
- title: Our Mission
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Approach
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Philosophy
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
about:
enable: true
service:
enable: true
section: service
show_item: 3
team:
enable: true
section: team
show_item: 3
title: Acerca de
---

7
content/es/contact.md Normal file
View File

@ -0,0 +1,7 @@
---
layout: contact
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Contacte con nosotros
---

View File

@ -0,0 +1,32 @@
---
description: Internal pages
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
weight: 1
title: Becario
---
## Tests
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### Nav
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### i18n
``` Filtro personalizado```
- Language :
- srcLanguage :
## Custom Tag
## Custom Tag
- [German](/de/intern)
- [English](/en/intern)
- [French](/fr/intern)

View File

@ -0,0 +1,64 @@
---
{}
---
---
title_i18n : "Intern"
description: "Internal pages"
bg_image_webp: "images/backgrounds/page-title.webp"
bg_image: "images/backgrounds/page-title.jpg"
weight: 1
---
```mermaid
graph TD
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A1[Design] --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1[CAD] --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1[Documentation] --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1[Collaboration Architecture] --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1[Enterprise] --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1[Build] --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
A --> A1
A --> B1
A --> C1
A --> D1
A --> E1
A --> F1

View File

@ -0,0 +1,58 @@
---
title_i18n : "Mermaid"
---
```mermaid
graph TB
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A --> A1[Design]
A --> B1[CAD]
A --> C1[Documentation]
A --> D1[Collaboration Architecture]
A --> E1[Enterprise]
A --> F1[Build]
A1 --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1 --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1 --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1 --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1 --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1 --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
```

View File

@ -0,0 +1,11 @@
---
subtitle: Products23
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Productos
keywords: Extrusora, Trituradora, Reciclaje, Katbot
---
Productos
{{% children depth="999" showhidden="false" %}}

View File

@ -0,0 +1,51 @@
---
description: Plastic Extruder
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
image_webp: images/products/extruders/bg.jpg
image: images/products/extruders/bg.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: true
summary: Plastic extrusion machines for education, prototyping and small productions
title: Extrusoras
---
## Plastic Extrusion Machines
## Plastic Extrusion Machines
Máquinas extrusoras de plástico
<hr/>
prices : 1800 - 12002 Euro
language :
srcLanguage :
<div class='exception'><h2 class=header>TypeError [ERR_INVALID_ARG_TYPE]: The &quot;path&quot; argument must be of type string or an instance of Buffer or URL. Received undefined</h2>
<span class=source> at statSync (node:fs:1658:10)</span><br />
<span class=source> at Object.sync [as exists] (C:\Users\mc007\Desktop\osr\osrl\node_modules\@plastichub\fs\exists.js:18:34)</span><br />
<span class=our-source> at module.exports (.\osr\commons\xlsx.osr.js:6:18)</span><br />
<span class=source> at runJSExpressionEx (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:144:130)</span><br />
<span class=source> at Object.&lt;anonymous&gt; (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:187:63)</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:8:71</span><br />
<span class=unknown> at new Promise (&lt;anonymous&gt;)</span><br />
<span class=source> at __awaiter (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:4:12)</span><br />
<span class=source> at Object.render (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:179:20)</span><br />
<span class=source> at Tag.render (C:\Users\mc007\Desktop\osr\osrl\liquidjs\template\tag\tag.js:22:31)</span><br />
<span class=unknown> at render.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:23:36</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at fulfilled (C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:5:58)</span><br /></div>
## Galería
{{< gallery dir="images/products/extruders/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,118 @@
---
description: Plastic Injection Machines
bg_image_webp: images/products/injectors/bg.jpg
bg_image: images/products/injectors/bg.jpg
image_webp: images/products/injectors/overview.jpg
image: images/products/injectors/overview.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Injection_Machines
client: Universities, R&D Services, Maker Industry
prices: 1400 - 5000 Euro
built: 40+
summary: Plastic Injection Machines for Education, Prototyping and small productions
title: Inyectores
---
### Máquinas de inyección de plástico para educación, creación de prototipos y pequeñas producciones
<table>
<thead>
<tr>
<th></th>
<th>KatBot Pro</th>
<th>Myriad</th>
<th>Elena-ZMAX-Motor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>25 Kg</td>
<td>40 Kg</td>
<td>40 Kg</td>
</tr>
<tr>
<td>Package Dimensions</td>
<td>70 x 30 x 45 cm</td>
<td>120 x 20 x 140 cm</td>
<td>120 x 20 x 140 cm</td>
</tr>
<tr>
<td>Plunger Diameter</td>
<td>25 mm</td>
<td>25 mm</td>
<td>25 mm</td>
</tr>
<tr>
<td>Usable Barrel Length</td>
<td>35cm</td>
<td>65 cm</td>
<td>70 cm</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>220V / 480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Ceramic</td>
<td>5 (300W) / Ceramic</td>
<td>7 (300W) / Ceramic</td>
</tr>
<tr>
<td>Temperature Controller</td>
<td>2x RexC100</td>
<td>2x RexC100</td>
<td>3x RexC100</td>
</tr>
<tr>
<td>Shot Size</td>
<td>120g</td>
<td>260g</td>
<td>600g</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
</tbody>
</table>
### KatBot Pro
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/katbotpro.jpg" >}}
</span>
### Myriad
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/myriad.jpg" >}}
</span>
### Elena-ZMAX - Motor
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/elenazmax.jpg" >}}
</span>
## Galería
{{< gallery dir="images/products/injectors/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,102 @@
---
description: Plastic Press Machines
bg_image_webp: images/products/presses/bg.jpg
bg_image: images/products/presses/bg.jpg
image_webp: images/products/presses/all-edc.jpg
image: images/products/presses/all-edc.jpg
author: PlasticHub
tags:
- Product
category: Presses
client: Enthusiasts, Universities and R&D services
prices: 1400 - 4200 Euro
built: 30+
debug: false
debugPage: false
summary: Sheet press machines for education, prototyping and small productions
title: Prensas de hojas
---
## Plastic Press Machines
## Plastic Press Machines
<table>
<thead>
<tr>
<th></th>
<th>Cassandra Mini</th>
<th>Cassandra EDC</th>
<th>Cassandra Max</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>70 Kg</td>
<td>120 Kg</td>
<td>450 Kg</td>
</tr>
<tr>
<td>Dimensions</td>
<td>45 x 45 x 80 cm</td>
<td>70 x 70 x 120 cm</td>
<td>170 x 170 x 180 cm</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>45 x 45 cm</td>
<td>65 x 65 cm</td>
<td>130 x 130 cm</td>
</tr>
<tr>
<td>Pressure</td>
<td>20 T</td>
<td>20 T</td>
<td>8 T</td>
</tr>
<tr>
<td>Heating Power</td>
<td>3 KW</td>
<td>6 KW</td>
<td>18 KW</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Max. Sheet Thickness</td>
<td>30 mm</td>
<td>30 mm</td>
<td>30 mm</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
<tr>
<td>Duration Per Sheet</td>
<td>30 Minutes</td>
<td>45 Minutes</td>
<td>60 Minutes</td>
</tr>
</tbody>
</table>
## Gallery
{{< gallery dir="images/products/presses/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,6 @@
---
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Proyectos
---

View File

@ -0,0 +1,38 @@
---
title: OSR-Education-Kit
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/edc/bg.jpg
bg_image: images/project/edc/bg.jpg
image_webp: images/project/edc/osr-edc.webp
image: images/project/edc/osr-edc.jpg
client: OSR-Plastic
category: Education
status: In Progress
duration: 2 Years
---
## OSR - Education - Kit
<span style="align:center">
{{< image width="80%" position="center" src="/images/project/edc/bg2.jpg" >}}
</span>
**Brief:** Modular, open, accessible, extensible, flexible plastic processing benchtop system, featuring a shredder, grinder, extruder, filament winder, pelletizer, automatic injection clamp.
**Status:** In development
**Scope:** School, Labs, Fablabs, Makerspaces
**Variants:** Small | Medium | Large
**Release date:** Mid 2024
### References
- [Sources](https://git.osr-plastic.org/osr-plastic/osr-edu-kit)
- [Download](https://files.osr-plastic.org/files/osr-edu-kit/)
- [Specs](https://git.osr-plastic.org/osr-plastic/osr-edu-kit/src/branch/master/documents/machines)
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
<hr/>
<br/>
<br/>
<br/>

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Platform
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/mancave.jpg
bg_image: images/project/mancave.jpg
image_webp: images/project/osr-plastic-icons-rec.webp
image: images/project/osr-plastic-icons-rec.jpg
client: OSR-Plastic
category: Platform
status: In Progress
duration: 5 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Printhead
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/printhead/bg.jpg
bg_image: images/project/printhead/bg.jpg
image_webp: images/project/printhead/icon.jpg
image: images/project/printhead/icon.jpg
client: OSR-Plastic
category: Platform
status: Mature
duration: 3 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,6 @@
---
title: Extrusoras
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,4 @@
---
title: Inyectores
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,740 @@
---
keywords:
- injection
- plastic
rGallery:
- name: anne2
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/anne2.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/anne2.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/anne2.webp"
meta:
format: jpeg
width: 6000
height: 8000
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:4:4
isProgressive: true
resolutionUnit: inch
hasProfile: true
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 8000
description: 8000px
Image Width:
value: 6000
description: 6000px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:4:4 (1 1)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
description: "72"
YResolution:
description: "72"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Anne Title
Make:
description: Blackview
Model:
description: BV9800Pro
Orientation:
value: 1
description: top-left
ResolutionUnit:
value: 2
description: inches
Software:
description: GIMP 2.10.38
DateTime:
description: 2024:06:09 12:27:21
YCbCrPositioning:
value: 2
description: co-sited
Exif IFD Pointer:
value: 616
description: 616
GPS Info IFD Pointer:
value: 1284
description: 1284
ExposureTime:
description: 1/33
FNumber:
description: f/1.7
ExposureProgram:
description: Undefined
ISOSpeedRatings:
value: 368
description: 368
ExifVersion:
description: "0220"
DateTimeOriginal:
description: 2024:06:09 11:49:02
DateTimeDigitized:
description: 2024:06:09 11:49:02
ComponentsConfiguration:
description: ""
ExposureBiasValue:
description: "0"
MeteringMode:
value: 2
description: CenterWeightedAverage
LightSource:
value: 255
description: Other light source
Flash:
description: Flash did not fire
FocalLength:
description: 4.7 mm
SubSecTime:
description: "74"
SubSecTimeOriginal:
description: "74"
SubSecTimeDigitized:
description: "74"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 1
description: sRGB
PixelXDimension:
value: 6000
description: 6000
PixelYDimension:
value: 8000
description: 8000
ExposureMode:
description: Auto exposure
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
description: Unknown
SceneCaptureType:
description: Standard
GPSLatitudeRef:
description: North latitude
GPSLatitude:
description: 40.913512499999996
GPSLongitudeRef:
description: East longitude
GPSLongitude:
description: 0.527343888888889
GPSAltitude:
description: 0 m
File Format:
description: "3"
Model Version:
description: "4"
Coded Character Set:
description: UTF-8
Caption/Abstract:
description: Anne Title
Copyright Notice:
description: dgfhdfgh
Keywords:
description: anne,plastichub
Record Version:
description: "4"
about:
value: ""
description: ""
DocumentID:
value: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
description: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
InstanceID:
value: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
description: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
OriginalDocumentID:
value: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
description: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
Format:
value: image/jpeg
description: image/jpeg
API:
value: "2.0"
description: "2.0"
Platform:
value: Windows
description: Windows
TimeStamp:
value: "1717928851014491"
description: "1717928851014491"
Version:
value: 2.10.38
description: 2.10.38
CreatorTool:
value: GIMP 2.10
description: GIMP 2.10
MetadataDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
ModifyDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
Rating:
value: "3"
description: "3"
History:
description: "action: saved; changed: /metadata; instanceID:
xmp.iid:aced4bfe-7db4-42ab-a01e-7a7a41bf61e7; softwareAgent: Gimp
2.10 (Windows); when: 2024-06-09T12:26:28, action: saved; changed:
/; instanceID: xmp.iid:363d3e5f-9f08-4a6b-b237-764f7fecfeaf;
softwareAgent: Gimp 2.10 (Windows); when: 2024-06-09T12:27:31"
rights:
description: dgfhdfgh
subject:
description: anne,plastichub
PersonInImage:
description: anne
title:
description: Anne Title
description:
description: Anne Title
Preferred CMM type:
value: lcms
description: lcms
Profile Version:
value: 4.4.0
description: 4.4.0
Profile/Device class:
value: mntr
description: Display Device profile
Color Space:
value: "RGB "
description: "RGB "
Connection Space:
value: "XYZ "
description: "XYZ "
ICC Profile Date:
value: 2024-06-09T10:25:27.000Z
description: 2024-06-09T10:25:27.000Z
ICC Signature:
value: acsp
description: acsp
Primary Platform:
value: MSFT
description: Microsoft
Device Manufacturer:
value: "\0\0\0\0"
description: "\0\0\0\0"
Device Model Number:
value: "\0\0\0\0"
description: "\0\0\0\0"
Rendering Intent:
description: Perceptual
Profile Creator:
value: lcms
description: lcms
ICC Description:
value: GIMP built-in sRGB
description: GIMP built-in sRGB
ICC Copyright:
value: Public Domain
description: Public Domain
ICC Device Manufacturer for Display:
value: GIMP
description: GIMP
ICC Device Model Description:
value: sRGB
description: sRGB
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: Anne Title
alt: "Anne Title - "
width: 6000
height: 8000
title: Anne Title
- name: latest
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latest.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latest.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latest.webp"
meta:
format: jpeg
width: 1980
height: 3565
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3565
description: 3565px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
ImageDescription:
description: Katbot
Make:
description: SONY
Model:
description: ILCE-7M3
Orientation:
value: 1
description: top-left
XResolution:
description: "350"
YResolution:
description: "350"
ResolutionUnit:
value: 2
description: inches
Exif IFD Pointer:
value: 466
description: 466
ExposureTime:
description: 1/250
FNumber:
description: f/4.5
ExposureProgram:
value: 1
description: Manual
ISOSpeedRatings:
value: 640
description: 640
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:04:03 13:10:12
DateTimeDigitized:
description: 2020:04:03 13:10:12
BrightnessValue:
description: "6.62265625"
ExposureBiasValue:
description: "0"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
value: 1
description: Daylight
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 40 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 3565
description: 3565
WhiteBalance:
value: 1
description: Manual white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 40
description: 40
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-04-03T13:10:12
description: 2020-04-03T13:10:12
subject:
description: injection
title:
description: Katbot
description:
description: Katbot
LastKeywordXMP:
description: injection
FileType:
value: jpeg
description: JPEG
keywords:
- injection
description: Katbot
alt: Katbot - inyección
width: 1980
height: 3565
title: Katbot
- name: latestx
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latestx.jp\
g"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latestx.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latestx.webp"
meta:
format: jpeg
width: 2216
height: 3936
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3936
description: 3936px
Image Width:
value: 2216
description: 2216px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 350
description: "350"
YResolution:
value: 350
description: "350"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Katbot-Open
Make:
description: SONYa
Model:
description: ILCE-7M3
Exif IFD Pointer:
value: 394
description: 394
ExposureTime:
description: 1/40
FNumber:
description: f/4
ExposureProgram:
value: 2
description: Normal program
ISOSpeedRatings:
value: 1250
description: 1250
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:03:19 16:10:20
DateTimeDigitized:
description: 2020:03:19 16:10:20
BrightnessValue:
description: "5.15"
ExposureBiasValue:
description: "1"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
description: Unknown
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 31 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 31
description: 31
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-03-19T16:10:20
description: 2020-03-19T16:10:20
subject:
description: injection,katbot-tags
title:
description: Katbot-Open
description:
description: Katbot-Open
LastKeywordXMP:
description: injection,katbot-tags
FileType:
value: jpeg
description: JPEG
keywords:
- injection
- katbot-tags
description: Katbot-Open
alt: Katbot-Open - inyección,katbot-tags
width: 2216
height: 3936
title: Katbot-Open
title: "Katbot-Pro"
author: PlasticHub
description: "Arbor injection machine that provides comfortable and precise injection of plastic!"
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Katbot-Pro</h1>
<p class="fs-3">¡Inyectora Arbor que proporciona una inyección cómoda y precisa de plástico!</p>
<p class="fs-2 text-danger">Precio: 1678 Euro</p>
<ul class="list-unstyled">
<ul>
<li>Todas las piezas se fabrican con precisión, utilizando modernas máquinas CNC y manuales</li>
<li>Desatascador suave y preciso</li>
<li>El émbolo tiene una punta de bronce reemplazable</li>
<li>2 interfaces de molde: cono para prensa e interfaz de rosca M20</li>
<li>Escudo térmico y aislamiento</li>
<li>Ajuste de la altura del molde sin escalones</li>
<li>Pasadores y ranuras de guía del molde</li>
<li>Transmisión 1:1</li>
<li>Tamaño de disparo: 145G</li>
<li>Sujeción rápida del molde</li>
<li>Válvula de cierre</li>
<li>Principalmente inoxidable, aluminio</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Arbor injection machine that provides fast, repeatable, comfortable, safe and precise injection of plastic!</p>
<h4 id="aspectosdestacadosydetalles">Aspectos destacados y detalles</h4>
<ul>
<li>All parts are precision manufactured, using modern CNC and manual machines</li>
<li>Smooth and precise plunging experience</li>
<li>The plunger has a replaceable bronze tip</li>
<li>2 mold interfaces: cone for press, and M20 thread interface</li>
<li>Heat-shield and insulation</li>
<li>Step-less mould height adjustment</li>
<li>Mould guide pins and slots</li>
<li>Transmission 1:1</li>
<li>Shot size: 145G</li>
<li>Quick Clamping</li>
<li>Shutoff valve</li>
<li>Mostly Stainless, Aluminum</li>
</ul>
<h4 id="services">Services</h4>
<ul>
<li>After - Sales Service</li>
<li>3 years Warranty</li>
<li>Cheap replacements for consumables</li>
<li>Customization to user needs</li>
<li>Mold design and fabrication</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"> <h4 style="text-align: center;">Dimensiones</h4>
<a href="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
<p style="text-align: center">
<img style="max-height:500px" src="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
</p>
</a>
<hr/>
</div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Especificación</h4>
<table>
<thead>
<tr>
<th>Variante</th>
<th>Vintage Delux</th>
</tr>
</thead>
<tbody>
<tr>
<td>Peso</td>
<td>27 Kg</td>
</tr>
<tr>
<td>Dimensiones del paquete</td>
<td>70 x 45 x 45 cm</td>
</tr>
<tr>
<td>Diámetro del émbolo</td>
<td>25mm</td>
</tr>
<tr>
<td>Longitud útil del cañón</td>
<td>Hasta 45 cm</td>
</tr>
<tr>
<td>Tensión soportada</td>
<td>220V / 110V</td>
</tr>
<tr>
<td>Tamaño de la escama de entrada</td>
<td>Pequeño - Mediano</td>
</tr>
<tr>
<td>Transmisión</td>
<td>1: 1</td>
</tr>
<tr>
<td>Interfaz de molde</td>
<td>Rosca M20 / Boquilla cónica</td>
</tr>
<tr>
<td>Bandas de calor</td>
<td>3 (250W) / Cerámica</td>
</tr>
<tr>
<td>Controlador de temperatura</td>
<td>2 - RexC-100</td>
</tr>
<tr>
<td>Tamaño del disparo</td>
<td>145g</td>
</tr>
<tr>
<td>Características</td>
<td>Válvula de cierre, altura de molde ajustable, sujeción rápida</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Recursos
- [ Descargar ](https://files.osr-plastic.org/files/osr-machines/injection/katbot-pro-mega-beta)
- [ vista previa en 3D ](https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/resources/edrawings.html)
- [ Repositorio de código fuente ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/injection/katbot-pro-mega-beta)
<hr/>
<h3>Envío</h3>
<b> Gastos de envío dentro de Europa </b>: 100 Euro <br/>
<b>Gastos de envío estimados fuera de Europa </b>: 350 Euro
<h3>Condiciones de pago</h3>
<b>Máquinas industriales</b> : 100% del coste total de la(s) máquina(s) a pagar en el momento del pedido.<br/>
<b>Máquinas de fabricación propia</b> <br/>
70% del coste total de la(s) máquina(s) a pagar en el momento del pedido.
El 30% restante + gastos de transporte a pagar a la recepción del número de seguimiento del envío (ninguna máquina sale del taller sin el pago total)
pago completo).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,467 @@
---
keywords:
- ""
rGallery:
- name: perspective-1h1c-ex
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e-1h1c-ex.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective-1h1c-ex.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective-1h1c-ex.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: perspective
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly-2x1.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly-2x1.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: shop-press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/shop-press\
-assembly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/shop-press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/shop-press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
title: "Sheetpress Cassandra - EDC650"
author: PlasticHub
description: "Small sheetpress for small and medium size parts. Ideal for small series and prototyping."
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress Cassandra - EDC650</h1>
<p class="fs-3">Pequeña prensa de chapa para piezas pequeñas y medianas. Ideal para pequeñas series y prototipos.</p>
<p class="fs-2 text-danger">Precio: Euro</p>
<ul class="list-unstyled">
<ul>
<li>Espesor de chapa de hasta 30 mm</li>
<li>15T de presión</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Flexible, modular dual sheetpress, including a heat and cooling press.</p>
<h2 id="detailsfeatures">Details / Features</h2>
<ul>
<li>Sheet thickness up to 30mm</li>
<li>15T of pressure</li>
<li>Stackable and interlockable (600x1300cm sheets)</li>
<li>cartridge heaters are embedded in the heat plates, enabling 30% better heat efficiency</li>
<li>Press plate options: heating, passive or active cooling</li>
<li>the hydraulic jack has a pneumatic port, to use a compressor instead</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Especificación</h4>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Cassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Presión</td>
<td>15T - Gato hidráulico con accionamiento neumático</td>
</tr>
<tr>
<td>Prensa - Tamaño de la plancha</td>
<td>65 cm</td>
</tr>
<tr>
<td>Prensa - Placas</td>
<td>2-3</td>
</tr>
<tr>
<td>Opciones</td>
<td>2 Placas de refrigeración activas</td>
</tr>
<tr>
<td>Tamaño de la hoja</td>
<td>60 cm</td>
</tr>
<tr>
<td>Electricidad</td>
<td>220V</td>
</tr>
<tr>
<td>Potencia</td>
<td>6 - 9 KW</td>
</tr>
<tr>
<td>Estado</td>
<td>Desarrollo</td>
</tr>
<tr>
<td>Versión</td>
<td>V1.0 (Revisión A)</td>
</tr>
<tr>
<td>Licencia</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Peso</td>
<td>180 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Recursos
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Descargar ](https://files.osr-plastic.org/files/osr-machines/sheetpress/cassandra-edczmax-rc1)
- [ vista previa en 3D ](https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/resources/edrawings.html)
- [ Repositorio de código fuente ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/cassandra-edczmax-rc1)
<hr/>
<h3>Condiciones de pago</h3>
<b>Máquinas industriales</b> : 100% del coste total de la(s) máquina(s) a pagar en el momento del pedido.<br/>
<b>Máquinas de fabricación propia</b> <br/>
70% del coste total de la(s) máquina(s) a pagar en el momento del pedido.
El 30% restante + gastos de transporte a pagar a la recepción del número de seguimiento del envío (ninguna máquina sale del taller sin el pago total)
pago completo).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress - Componentes
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,239 @@
---
keywords:
- ""
rGallery:
- name: DSC01067
url: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery/DSC01067.j\
pg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//20/webp\
/DSC01067.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//we\
bp/DSC01067.webp"
meta:
format: jpeg
width: 1980
height: 1323
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1323
description: 1323px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
Orientation:
value: 1
description: top-left
XResolution:
description: "72"
YResolution:
description: "72"
ResolutionUnit:
value: 2
description: inches
YCbCrPositioning:
value: 1
description: centered
Exif IFD Pointer:
value: 102
description: 102
ExifVersion:
description: "0210"
ComponentsConfiguration:
description: ""
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 1323
description: 1323
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1980
height: 1323
title: ""
title: "Sheetpress cell module - 650"
author: PlasticHub
description: ""
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress cell module - 650</h1>
<p class="fs-3"></p>
<p class="fs-2 text-danger">Precio: 4800 Euro</p>
<ul class="list-unstyled">
</ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<h1 id="sheetpressmodule650">Sheetpress Module - 650</h1>
<h2 id="featuresdetails">Features / Details</h2>
<ul>
<li>15mm 5038 Aluminum plates, precision cut and ground</li>
<li>9 Cartridge heaters, 12mm diameter, 80mm long, 300W, embedded in the heat-plate for maximum contact and lifespan</li>
<li>the module is compatible with <a href="https://shop.osr-plastic.org/sheetpress/cassanda-light/">'Cassandra Light'</a>. Larger designs as a 2x2 arrangments are also available in the <a href="https://files.osr-plastic.org/files/osr-machines/sheetpress/">library</a></li>
<li>the lower support ribs can be removed</li>
<li>point to point temperature differences are within a 2 degree celsius range</li>
<li>warmup time - 220V : 20 minutes, 400V: 10 minutes</li>
<li>low heating oscillation, approximately every 15 seconds</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Especificación</h4>
<table>
<thead>
<tr>
<th>Nombre</th>
<th>Cassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Presión</td>
<td>15T - Gato hidráulico con accionamiento neumático</td>
</tr>
<tr>
<td>Prensa - Tamaño de la plancha</td>
<td>65 cm</td>
</tr>
<tr>
<td>Prensa - Placas</td>
<td>2-3</td>
</tr>
<tr>
<td>Opciones</td>
<td>2 Placas de refrigeración activas</td>
</tr>
<tr>
<td>Tamaño de la hoja</td>
<td>60 cm</td>
</tr>
<tr>
<td>Electricidad</td>
<td>220V</td>
</tr>
<tr>
<td>Potencia</td>
<td>6 - 9 KW</td>
</tr>
<tr>
<td>Estado</td>
<td>Desarrollo</td>
</tr>
<tr>
<td>Versión</td>
<td>V1.0 (Revisión A)</td>
</tr>
<tr>
<td>Licencia</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Peso</td>
<td>180 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Recursos
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Descargar ](https://files.osr-plastic.org/files/osr-machines/sheetpress/components/sprcb-650-light)
- [ vista previa en 3D ](https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/resources/edrawings.html)
- [ Repositorio de código fuente ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/components/sprcb-650-light)
<hr/>
<h3>Envío</h3>
<b> Gastos de envío dentro de Europa </b>: 100 Euro <br/>
<h3>Condiciones de pago</h3>
<b>Máquinas industriales</b> : 100% del coste total de la(s) máquina(s) a pagar en el momento del pedido.<br/>
<b>Máquinas de fabricación propia</b> <br/>
70% del coste total de la(s) máquina(s) a pagar en el momento del pedido.
El 30% restante + gastos de transporte a pagar a la recepción del número de seguimiento del envío (ninguna máquina sale del taller sin el pago total)
pago completo).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Trituradora
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

9
content/fr/_index.md Normal file
View File

@ -0,0 +1,9 @@
---
title: foyers
---
[Products](./product/)
[Projects](./project/)
[Retail](./retail/)

38
content/fr/about.md Normal file
View File

@ -0,0 +1,38 @@
---
layout: about
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
philosophy:
enable: false
philosophy_item:
- title: Our Mission
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Approach
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
- title: Our Philosophy
content: Lorem ipsum dolor sit amet consectetur adip isicing elit sed do eiusmod
tempor incididunt ut labore.
bullet_point:
- Quality Services
- Clients Satisfaction
about:
enable: true
service:
enable: true
section: service
show_item: 3
team:
enable: true
section: team
show_item: 3
title: A propos de
---

7
content/fr/contact.md Normal file
View File

@ -0,0 +1,7 @@
---
layout: contact
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Nous contacter
---

View File

@ -0,0 +1,32 @@
---
description: Internal pages
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
weight: 1
title: Stagiaire
---
## Tests
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### Nav
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}
### i18n
``` Filtre personnalisé```
- Language :
- srcLanguage :
## Custom Tag
## Custom Tag
- [German](/de/intern)
- [English](/en/intern)
- [French](/fr/intern)

View File

@ -0,0 +1,58 @@
---
title_i18n : "Mermaid"
---
```mermaid
graph TB
A[Open Source Product Development - Milestones 2016-2017 Roadmap]
A --> A1[Design]
A --> B1[CAD]
A --> C1[Documentation]
A --> D1[Collaboration Architecture]
A --> E1[Enterprise]
A --> F1[Build]
A1 --> A2[Core Design Information Architecture]
A1 --> A3[Machine Design Guides]
A1 --> A4[SME Advisory Team Formed]
A1 --> A5[Design Webinars]
A1 --> A6[Test-Driven Design Webinars]
A1 --> A7[Design-Build School]
B1 --> B2[Open Source 3D CAD - FreeCAD Instructionals]
B1 --> B3[FreeCAD Part Libraries Developed]
B1 --> B4[CAE, CAM, exploded part animations, reverse engineering, 3D scanning, architecture design]
B1 --> B5[File Conversion Tool]
B1 --> B6[Cloud Collaborative CAD Solution]
C1 --> C2[Core Documentation Information Architecture]
C1 --> C3[Wiki Part Library Templates]
C1 --> C4[Semantic Mediawiki Information Architecture Standards]
C1 --> C5[Real-time Build Documentation Protocols]
C1 --> C6[Collaborative Video Editing Protocols]
C1 --> C7[Book/Manual Publishing]
D1 --> D2[Role Architecture]
D1 --> D3[Robust Identity/Login]
D1 --> D4[Collaborative Literacy Training]
D1 --> D5[Development Forum + Issue Tracker]
D1 --> D6[Upvoting Platform like Stack Overflow]
D1 --> D7[Publishing Templates]
D1 --> D8[Team Formation]
E1 --> E2[Core Information Architecture]
E1 --> E3[OS Mass Email]
E1 --> E4[Core Business Competency Training]
E1 --> E5[Open Business Models Library]
E1 --> E6[Entrepreneur-in-Residence Program]
E1 --> E7[Collaborative Marketing Strategy]
F1 --> F2[Replicable Build Workshop Model]
F1 --> F3[Local Sourcing Development]
F1 --> F4[Product Ecology for Flexible Fabrication]
F1 --> F5[Open Source Construction]
F1 --> F6[Open Source Micro Factory]
F1 --> F7[Open Source Micro Factory Equipment]
```

View File

@ -0,0 +1,11 @@
---
subtitle: Products23
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Produits
keywords: Extrudeuse, Déchiqueteuse, Recyclage, Katbot
---
Produits
{{% children depth="999" showhidden="false" %}}

View File

@ -0,0 +1,51 @@
---
description: Plastic Extruder
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
image_webp: images/products/extruders/bg.jpg
image: images/products/extruders/bg.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: true
summary: Plastic extrusion machines for education, prototyping and small productions
title: Extrudeuses
---
## Plastic Extrusion Machines
## Plastic Extrusion Machines
Machines d'extrusion de plastique
<hr/>
prices : 1800 - 12002 Euro
language :
srcLanguage :
<div class='exception'><h2 class=header>TypeError [ERR_INVALID_ARG_TYPE]: The &quot;path&quot; argument must be of type string or an instance of Buffer or URL. Received undefined</h2>
<span class=source> at statSync (node:fs:1658:10)</span><br />
<span class=source> at Object.sync [as exists] (C:\Users\mc007\Desktop\osr\osrl\node_modules\@plastichub\fs\exists.js:18:34)</span><br />
<span class=our-source> at module.exports (.\osr\commons\xlsx.osr.js:6:18)</span><br />
<span class=source> at runJSExpressionEx (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:144:130)</span><br />
<span class=source> at Object.&lt;anonymous&gt; (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:187:63)</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:8:71</span><br />
<span class=unknown> at new Promise (&lt;anonymous&gt;)</span><br />
<span class=source> at __awaiter (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:4:12)</span><br />
<span class=source> at Object.render (C:\Users\mc007\Desktop\osr\osrl\plugins\js.js:179:20)</span><br />
<span class=source> at Tag.render (C:\Users\mc007\Desktop\osr\osrl\liquidjs\template\tag\tag.js:22:31)</span><br />
<span class=unknown> at render.next (&lt;anonymous&gt;)</span><br />
<span class=source> at C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:23:36</span><br />
<span class=unknown> at Generator.next (&lt;anonymous&gt;)</span><br />
<span class=source> at fulfilled (C:\Users\mc007\Desktop\osr\osrl\liquidjs\util\async.js:5:58)</span><br /></div>
## Galerie
{{< gallery dir="images/products/extruders/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,118 @@
---
description: Plastic Injection Machines
bg_image_webp: images/products/injectors/bg.jpg
bg_image: images/products/injectors/bg.jpg
image_webp: images/products/injectors/overview.jpg
image: images/products/injectors/overview.jpg
author: PlasticHub
tags:
- Product
category: Plastic_Injection_Machines
client: Universities, R&D Services, Maker Industry
prices: 1400 - 5000 Euro
built: 40+
summary: Plastic Injection Machines for Education, Prototyping and small productions
title: Injecteurs
---
### Machines d'injection plastique pour l'enseignement, le prototypage et les petites productions
<table>
<thead>
<tr>
<th></th>
<th>KatBot Pro</th>
<th>Myriad</th>
<th>Elena-ZMAX-Motor</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>25 Kg</td>
<td>40 Kg</td>
<td>40 Kg</td>
</tr>
<tr>
<td>Package Dimensions</td>
<td>70 x 30 x 45 cm</td>
<td>120 x 20 x 140 cm</td>
<td>120 x 20 x 140 cm</td>
</tr>
<tr>
<td>Plunger Diameter</td>
<td>25 mm</td>
<td>25 mm</td>
<td>25 mm</td>
</tr>
<tr>
<td>Usable Barrel Length</td>
<td>35cm</td>
<td>65 cm</td>
<td>70 cm</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>220V / 480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Heatbands</td>
<td>3 (250W) / Ceramic</td>
<td>5 (300W) / Ceramic</td>
<td>7 (300W) / Ceramic</td>
</tr>
<tr>
<td>Temperature Controller</td>
<td>2x RexC100</td>
<td>2x RexC100</td>
<td>3x RexC100</td>
</tr>
<tr>
<td>Shot Size</td>
<td>120g</td>
<td>260g</td>
<td>600g</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
</tbody>
</table>
### KatBot Pro
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/katbotpro.jpg" >}}
</span>
### Myriad
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/myriad.jpg" >}}
</span>
### Elena-ZMAX - Motor
<span style="align:center">
{{< image width="100%" position="img-center" src="/images/products/injectors/elenazmax.jpg" >}}
</span>
## Galerie
{{< gallery dir="images/products/injectors/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,102 @@
---
description: Plastic Press Machines
bg_image_webp: images/products/presses/bg.jpg
bg_image: images/products/presses/bg.jpg
image_webp: images/products/presses/all-edc.jpg
image: images/products/presses/all-edc.jpg
author: PlasticHub
tags:
- Product
category: Presses
client: Enthusiasts, Universities and R&D services
prices: 1400 - 4200 Euro
built: 30+
debug: false
debugPage: false
summary: Sheet press machines for education, prototyping and small productions
title: Presses à feuilles
---
## Plastic Press Machines
## Plastic Press Machines
<table>
<thead>
<tr>
<th></th>
<th>Cassandra Mini</th>
<th>Cassandra EDC</th>
<th>Cassandra Max</th>
</tr>
</thead>
<tbody>
<tr>
<td>Weight</td>
<td>70 Kg</td>
<td>120 Kg</td>
<td>450 Kg</td>
</tr>
<tr>
<td>Dimensions</td>
<td>45 x 45 x 80 cm</td>
<td>70 x 70 x 120 cm</td>
<td>170 x 170 x 180 cm</td>
</tr>
<tr>
<td>Press Plate Size</td>
<td>45 x 45 cm</td>
<td>65 x 65 cm</td>
<td>130 x 130 cm</td>
</tr>
<tr>
<td>Pressure</td>
<td>20 T</td>
<td>20 T</td>
<td>8 T</td>
</tr>
<tr>
<td>Heating Power</td>
<td>3 KW</td>
<td>6 KW</td>
<td>18 KW</td>
</tr>
<tr>
<td>Supported Voltage</td>
<td>220V</td>
<td>220V</td>
<td>480V</td>
</tr>
<tr>
<td>Input Flake Size</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
<td>Small - Medium</td>
</tr>
<tr>
<td>Max. Sheet Thickness</td>
<td>30 mm</td>
<td>30 mm</td>
<td>30 mm</td>
</tr>
<tr>
<td>Optimized for</td>
<td>Hobby, Prototyping, Education</td>
<td>Education, Prototyping</td>
<td>Prototyping, Production</td>
</tr>
<tr>
<td>Duration Per Sheet</td>
<td>30 Minutes</td>
<td>45 Minutes</td>
<td>60 Minutes</td>
</tr>
</tbody>
</table>
## Gallery
{{< gallery dir="images/products/presses/gallery" class="" height="400" width="400" webp="false" command="Fit" options="" zoomable="true" >}}

View File

@ -0,0 +1,6 @@
---
description: this is meta description
bg_image_webp: images/backgrounds/page-title.webp
bg_image: images/backgrounds/page-title.jpg
title: Projets
---

View File

@ -0,0 +1,38 @@
---
title: OSR-Education-Kit
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/edc/bg.jpg
bg_image: images/project/edc/bg.jpg
image_webp: images/project/edc/osr-edc.webp
image: images/project/edc/osr-edc.jpg
client: OSR-Plastic
category: Education
status: In Progress
duration: 2 Years
---
## OSR - Education - Kit
<span style="align:center">
{{< image width="80%" position="center" src="/images/project/edc/bg2.jpg" >}}
</span>
**Brief:** Modular, open, accessible, extensible, flexible plastic processing benchtop system, featuring a shredder, grinder, extruder, filament winder, pelletizer, automatic injection clamp.
**Status:** In development
**Scope:** School, Labs, Fablabs, Makerspaces
**Variants:** Small | Medium | Large
**Release date:** Mid 2024
### References
- [Sources](https://git.osr-plastic.org/osr-plastic/osr-edu-kit)
- [Download](https://files.osr-plastic.org/files/osr-edu-kit/)
- [Specs](https://git.osr-plastic.org/osr-plastic/osr-edu-kit/src/branch/master/documents/machines)
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
<hr/>
<br/>
<br/>
<br/>

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Platform
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/mancave.jpg
bg_image: images/project/mancave.jpg
image_webp: images/project/osr-plastic-icons-rec.webp
image: images/project/osr-plastic-icons-rec.jpg
client: OSR-Plastic
category: Platform
status: In Progress
duration: 5 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,101 @@
---
title: OSR-Plastic-Printhead
date: 2019-02-07T04:47:55.000Z
description: OSR-Plastic, Opensource Technology
bg_image_webp: images/project/printhead/bg.jpg
bg_image: images/project/printhead/bg.jpg
image_webp: images/project/printhead/icon.jpg
image: images/project/printhead/icon.jpg
client: OSR-Plastic
category: Platform
status: Mature
duration: 3 Years
---
## OSR - Plastic - Platform
Eating our own dog food is a cornerstone principle guiding our success for clients. Our software stack empowers rapid response to customer inquiries and facilitates portfolio expansion. The platform leverages cutting-edge open-source technologies for documentation, knowledge harvesting, and daily product development support. Currently, we manage over 100GB of SolidWorks designs and more than 30 software packages.
### Core Packages
{{< image width="80%" position="img-center" src="/images/project/diagrams/core.jpg" >}}
### Data Related Packages
{{< image width="80%" position="center" src="/images/project/diagrams/data.jpg" >}}
### Tools
{{< image width="80%" position="center" src="/images/project/diagrams/tools.jpg" >}}
<hr/>
<br/>
<br/>
<br/>
## Resources
### General
- [Marketplace](https://shop.osr-plastic.org/)
- [OSR & Global News](https://forum.osr-plastic.org/c/community/news/67)
- [User Directory (WIP)](https://kb.osr-plastic.org/directory/intro/)
- [Forum](https://forum.osr-plastic.org/)
- [Howtos](https://forum.osr-plastic.org/c/wiki/howtos/72)
- [Machine & Components Library](https://forum.osr-plastic.org/c/machines/49)
- [Moulds - Library](https://forum.osr-plastic.org/c/molds/56)
- [Git Repositories](https://git.osr-plastic.org/osr-plastic)
## Software & Content Repositories
### Commons
- [Core](https://git.osr-plastic.org/osr-plastic/osr-core)
- [FS (Filesystem)](https://git.osr-plastic.org/osr-plastic/osr-fs)
- [Commons (Basic types)](https://git.osr-plastic.org/osr-plastic/osr-commons)
- [CLI-Commons](https://git.osr-plastic.org/osr-plastic/osr-cli-commons)
- [Profiles (sync, OSR-Language)](https://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Templates](https://git.osr-plastic.org/osr-plastic/osr-templates)
### Content & Media Utilities
- [Media : Images, Videos, Sound](https://git.osr-plastic.org/osr-plastic/osr-media)
- [CAD](https://git.osr-plastic.org/osr-plastic/osr-cad)
- [Language (Wiki/DSL) - Markdown/Liquid](https://git.osr-plastic.org/osr-plastic/osrl)
- [Deepl Translator](https://git.osr-plastic.org/osr-plastic/osr-i18n)
- [Reporting Lib](https://git.osr-plastic.org/osr-plastic/osr-reports)
- [AI Tools](https://git.osr-plastic.org/osr-plastic/osr-ai)
### System
- [System (Architecture & Docs)](https://git.osr-plastic.org/osr-plastic/system)
- [Tasks](hhttps://git.osr-plastic.org/osr-plastic/osr-profiles)
- [Filesystem Sync](https://git.osr-plastic.org/osr-plastic/osr-sync)
- [System Bootstrap Scripts](https://git.osr-plastic.org/osr-plastic/osr-bin-windows)
- [System Shell](https://git.osr-plastic.org/osr-plastic/osr-cli)
### Marketplace
- [Library & API](https://git.osr-plastic.org/osr-plastic/osr-cscart)
- [Scripts, Meta & Assets](https://git.osr-plastic.org/osr-plastic/osr-marketplace)
- [Objectives/Features - G-Doc](https://docs.google.com/document/d/1Q8FnaUUMF5tHZQsj3nKGc-BxDqqcJ7qUp5RaRHSynj0/edit)
- [PP Bazar snapshots](https://git.osr-plastic.org/osr-plastic/pp-bazar)
- [OSR - Tasks](https://git.osr-plastic.org/osr-plastic/osr-tasks.git)
- [OSR System Docs](https://git.osr-plastic.org/osr-plastic/system.git)
- [OSR - KB 'Knowledge Base'](https://git.osr-plastic.org/osr-plastic/osr-kb-next.git)
### Firmware
- [Firmware](https://git.osr-plastic.org/osr-plastic/osr-firmware)
### Services & API
- [Discourse API](https://git.osr-plastic.org/osr-plastic/osr-discourse)
- [Locations - GoogleMaps](https://git.osr-plastic.org/osr-plastic/osr-search)
### Content & Assets
- [Forum Pages Source](https://git.osr-plastic.org/osr-plastic/osr-forum-pages)
- [Machine Library](https://git.osr-plastic.org/osr-plastic/osr-machines)
- [User Directory](https://git.osr-plastic.org/osr-plastic/osr-directory)
- [Mould Library](https://git.osr-plastic.org/osr-plastic/osr-moulds-next)
- [Papers, Articles, Books, Research](https://git.osr-plastic.org/osr-plastic/osr-resources)

View File

@ -0,0 +1,6 @@
---
title: Extrudeuses
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,4 @@
---
title: Injecteurs
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,740 @@
---
keywords:
- injection
- plastic
rGallery:
- name: anne2
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/anne2.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/anne2.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/anne2.webp"
meta:
format: jpeg
width: 6000
height: 8000
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:4:4
isProgressive: true
resolutionUnit: inch
hasProfile: true
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 8000
description: 8000px
Image Width:
value: 6000
description: 6000px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:4:4 (1 1)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
description: "72"
YResolution:
description: "72"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Anne Title
Make:
description: Blackview
Model:
description: BV9800Pro
Orientation:
value: 1
description: top-left
ResolutionUnit:
value: 2
description: inches
Software:
description: GIMP 2.10.38
DateTime:
description: 2024:06:09 12:27:21
YCbCrPositioning:
value: 2
description: co-sited
Exif IFD Pointer:
value: 616
description: 616
GPS Info IFD Pointer:
value: 1284
description: 1284
ExposureTime:
description: 1/33
FNumber:
description: f/1.7
ExposureProgram:
description: Undefined
ISOSpeedRatings:
value: 368
description: 368
ExifVersion:
description: "0220"
DateTimeOriginal:
description: 2024:06:09 11:49:02
DateTimeDigitized:
description: 2024:06:09 11:49:02
ComponentsConfiguration:
description: ""
ExposureBiasValue:
description: "0"
MeteringMode:
value: 2
description: CenterWeightedAverage
LightSource:
value: 255
description: Other light source
Flash:
description: Flash did not fire
FocalLength:
description: 4.7 mm
SubSecTime:
description: "74"
SubSecTimeOriginal:
description: "74"
SubSecTimeDigitized:
description: "74"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 1
description: sRGB
PixelXDimension:
value: 6000
description: 6000
PixelYDimension:
value: 8000
description: 8000
ExposureMode:
description: Auto exposure
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
description: Unknown
SceneCaptureType:
description: Standard
GPSLatitudeRef:
description: North latitude
GPSLatitude:
description: 40.913512499999996
GPSLongitudeRef:
description: East longitude
GPSLongitude:
description: 0.527343888888889
GPSAltitude:
description: 0 m
File Format:
description: "3"
Model Version:
description: "4"
Coded Character Set:
description: UTF-8
Caption/Abstract:
description: Anne Title
Copyright Notice:
description: dgfhdfgh
Keywords:
description: anne,plastichub
Record Version:
description: "4"
about:
value: ""
description: ""
DocumentID:
value: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
description: gimp:docid:gimp:61d7030c-bb4a-4af8-a9f2-afb0c69b4ec9
InstanceID:
value: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
description: xmp.iid:845d7676-d636-4c5e-8af9-b03a90d9ba2d
OriginalDocumentID:
value: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
description: xmp.did:05bf1f07-4e7c-4d50-8f32-abe41a2bba2f
Format:
value: image/jpeg
description: image/jpeg
API:
value: "2.0"
description: "2.0"
Platform:
value: Windows
description: Windows
TimeStamp:
value: "1717928851014491"
description: "1717928851014491"
Version:
value: 2.10.38
description: 2.10.38
CreatorTool:
value: GIMP 2.10
description: GIMP 2.10
MetadataDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
ModifyDate:
value: 2024:06:09T12:27:21+02:00
description: 2024:06:09T12:27:21+02:00
Rating:
value: "3"
description: "3"
History:
description: "action: saved; changed: /metadata; instanceID:
xmp.iid:aced4bfe-7db4-42ab-a01e-7a7a41bf61e7; softwareAgent: Gimp
2.10 (Windows); when: 2024-06-09T12:26:28, action: saved; changed:
/; instanceID: xmp.iid:363d3e5f-9f08-4a6b-b237-764f7fecfeaf;
softwareAgent: Gimp 2.10 (Windows); when: 2024-06-09T12:27:31"
rights:
description: dgfhdfgh
subject:
description: anne,plastichub
PersonInImage:
description: anne
title:
description: Anne Title
description:
description: Anne Title
Preferred CMM type:
value: lcms
description: lcms
Profile Version:
value: 4.4.0
description: 4.4.0
Profile/Device class:
value: mntr
description: Display Device profile
Color Space:
value: "RGB "
description: "RGB "
Connection Space:
value: "XYZ "
description: "XYZ "
ICC Profile Date:
value: 2024-06-09T10:25:27.000Z
description: 2024-06-09T10:25:27.000Z
ICC Signature:
value: acsp
description: acsp
Primary Platform:
value: MSFT
description: Microsoft
Device Manufacturer:
value: "\0\0\0\0"
description: "\0\0\0\0"
Device Model Number:
value: "\0\0\0\0"
description: "\0\0\0\0"
Rendering Intent:
description: Perceptual
Profile Creator:
value: lcms
description: lcms
ICC Description:
value: GIMP built-in sRGB
description: GIMP built-in sRGB
ICC Copyright:
value: Public Domain
description: Public Domain
ICC Device Manufacturer for Display:
value: GIMP
description: GIMP
ICC Device Model Description:
value: sRGB
description: sRGB
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: Anne Title
alt: "Anne Title - "
width: 6000
height: 8000
title: Anne Title
- name: latest
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latest.jpg"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latest.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latest.webp"
meta:
format: jpeg
width: 1980
height: 3565
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3565
description: 3565px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
ImageDescription:
description: Katbot
Make:
description: SONY
Model:
description: ILCE-7M3
Orientation:
value: 1
description: top-left
XResolution:
description: "350"
YResolution:
description: "350"
ResolutionUnit:
value: 2
description: inches
Exif IFD Pointer:
value: 466
description: 466
ExposureTime:
description: 1/250
FNumber:
description: f/4.5
ExposureProgram:
value: 1
description: Manual
ISOSpeedRatings:
value: 640
description: 640
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:04:03 13:10:12
DateTimeDigitized:
description: 2020:04:03 13:10:12
BrightnessValue:
description: "6.62265625"
ExposureBiasValue:
description: "0"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
value: 1
description: Daylight
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 40 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 3565
description: 3565
WhiteBalance:
value: 1
description: Manual white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 40
description: 40
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-04-03T13:10:12
description: 2020-04-03T13:10:12
subject:
description: injection
title:
description: Katbot
description:
description: Katbot
LastKeywordXMP:
description: injection
FileType:
value: jpeg
description: JPEG
keywords:
- injection
description: Katbot
alt: Katbot - injection
width: 1980
height: 3565
title: Katbot
- name: latestx
url: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery/latestx.jp\
g"
thumb: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//20/webp\
/latestx.webp"
responsive: "https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/media/gallery//we\
bp/latestx.webp"
meta:
format: jpeg
width: 2216
height: 3936
space: srgb
channels: 3
depth: uchar
density: 350
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 3936
description: 3936px
Image Width:
value: 2216
description: 2216px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 350
description: "350"
YResolution:
value: 350
description: "350"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
ImageDescription:
description: Katbot-Open
Make:
description: SONYa
Model:
description: ILCE-7M3
Exif IFD Pointer:
value: 394
description: 394
ExposureTime:
description: 1/40
FNumber:
description: f/4
ExposureProgram:
value: 2
description: Normal program
ISOSpeedRatings:
value: 1250
description: 1250
ExifVersion:
description: "0231"
DateTimeOriginal:
description: 2020:03:19 16:10:20
DateTimeDigitized:
description: 2020:03:19 16:10:20
BrightnessValue:
description: "5.15"
ExposureBiasValue:
description: "1"
MaxApertureValue:
description: "4.00"
MeteringMode:
value: 1
description: Average
LightSource:
description: Unknown
Flash:
value: 16
description: Flash did not fire, compulsory flash mode
FocalLength:
description: 31 mm
SubSecTimeOriginal:
description: "00"
SubSecTimeDigitized:
description: "00"
WhiteBalance:
description: Auto white balance
DigitalZoomRatio:
description: "1"
FocalLengthIn35mmFilm:
value: 31
description: 31
Contrast:
description: Normal
Saturation:
description: Normal
Sharpness:
description: Normal
about:
value: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
description: uuid:faf5bdd5-ba3d-11da-ad31-d33d75182f1b
CreateDate:
value: 2020-03-19T16:10:20
description: 2020-03-19T16:10:20
subject:
description: injection,katbot-tags
title:
description: Katbot-Open
description:
description: Katbot-Open
LastKeywordXMP:
description: injection,katbot-tags
FileType:
value: jpeg
description: JPEG
keywords:
- injection
- katbot-tags
description: Katbot-Open
alt: Katbot-Open - injection, katbot-tags
width: 2216
height: 3936
title: Katbot-Open
title: "Katbot-Pro"
author: PlasticHub
description: "Arbor injection machine that provides comfortable and precise injection of plastic!"
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Katbot-Pro</h1>
<p class="fs-3">Machine à injecter Arbor qui permet une injection confortable et précise du plastique !</p>
<p class="fs-2 text-danger">Prix: 1678 L'euro</p>
<ul class="list-unstyled">
<ul>
<li>Toutes les pièces sont fabriquées avec précision, à l'aide de machines modernes à commande numérique et manuelles</li>
<li>Plongée douce et précise</li>
<li>Le piston est doté d'une pointe en bronze remplaçable</li>
<li>2 interfaces de moulage : cône pour la presse et interface filetée M20</li>
<li>Écran thermique et isolation</li>
<li>Réglage de la hauteur du moule sans palier</li>
<li>Goupilles et fentes de guidage du moule</li>
<li>Transmission 1:1</li>
<li>Taille du moule : 145G</li>
<li>Serrage rapide du moule</li>
<li>Vanne d'arrêt</li>
<li>Principalement en acier inoxydable, en aluminium</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Arbor injection machine that provides fast, repeatable, comfortable, safe and precise injection of plastic!</p>
<h4 id="faitsmarquantsetdtails">Faits marquants et détails</h4>
<ul>
<li>All parts are precision manufactured, using modern CNC and manual machines</li>
<li>Smooth and precise plunging experience</li>
<li>The plunger has a replaceable bronze tip</li>
<li>2 mold interfaces: cone for press, and M20 thread interface</li>
<li>Heat-shield and insulation</li>
<li>Step-less mould height adjustment</li>
<li>Mould guide pins and slots</li>
<li>Transmission 1:1</li>
<li>Shot size: 145G</li>
<li>Quick Clamping</li>
<li>Shutoff valve</li>
<li>Mostly Stainless, Aluminum</li>
</ul>
<h4 id="services">Services</h4>
<ul>
<li>After - Sales Service</li>
<li>3 years Warranty</li>
<li>Cheap replacements for consumables</li>
<li>Customization to user needs</li>
<li>Mold design and fabrication</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"> <h4 style="text-align: center;">Dimensions</h4>
<a href="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
<p style="text-align: center">
<img style="max-height:500px" src="https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/drawings/dimensions.jpg">
</p>
</a>
<hr/>
</div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spécifications</h4>
<table>
<thead>
<tr>
<th>Variante</th>
<th>Vintage Delux</th>
</tr>
</thead>
<tbody>
<tr>
<td>Poids</td>
<td>27 Kg</td>
</tr>
<tr>
<td>Dimensions de l'emballage</td>
<td>70 x 45 x 45 cm</td>
</tr>
<tr>
<td>Diamètre du piston</td>
<td>25 mm</td>
</tr>
<tr>
<td>Longueur de canon utilisable</td>
<td>Jusqu'à 45 cm</td>
</tr>
<tr>
<td>Tension supportée</td>
<td>220V / 110V</td>
</tr>
<tr>
<td>Taille des flocons d'entrée</td>
<td>Petit - Moyen</td>
</tr>
<tr>
<td>Transmission</td>
<td>1 : 1</td>
</tr>
<tr>
<td>Interface avec le moule</td>
<td>Filetage M20 / Buse conique</td>
</tr>
<tr>
<td>Bandeaux de chaleur</td>
<td>3 (250W) / Céramique</td>
</tr>
<tr>
<td>Contrôleur de température</td>
<td>2 - RexC-100</td>
</tr>
<tr>
<td>Taille de tir</td>
<td>145g</td>
</tr>
<tr>
<td>Caractéristiques</td>
<td>Vanne d'arrêt, hauteur de moule réglable, serrage rapide</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Ressources
- [ Télécharger ](https://files.osr-plastic.org/files/osr-machines/injection/katbot-pro-mega-beta)
- [ aperçu 3D ](https://assets.osr-plastic.org:433/injection/katbot-pro-mega-beta/resources/edrawings.html)
- [ Dépôt de code source ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/injection/katbot-pro-mega-beta)
<hr/>
<h3>Expédition</h3>
<b> Frais d'expédition en Europe </b>: 100 Euro <br/>
<b>Estimation des frais de port en dehors de l'Europe </b>: 350 Euro
<h3>Conditions de paiement</h3>
<b>Machines industrielles</b> : 100% du coût total de la (des) machine(s) à payer au moment de la commande.<br/>
<b>Machines fabriquées en interne</b> <br/>
70% du prix total de la (des) machine(s) à payer au moment de la commande.
Les 30% restants + les frais de transport sont à payer à la réception du numéro de suivi de l'expédition (aucune machine ne quitte l'atelier sans avoir été intégralement payée)
sans paiement intégral).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Presse à feuilles
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,467 @@
---
keywords:
- ""
rGallery:
- name: perspective-1h1c-ex
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e-1h1c-ex.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective-1h1c-ex.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective-1h1c-ex.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: perspective
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/perspectiv\
e.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/perspective.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/perspective.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly-2x1
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly-2x1.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly-2x1.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly-2x1.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/press-asse\
mbly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
- name: shop-press-assembly
url: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery/shop-press\
-assembly.jpg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//20/webp\
/shop-press-assembly.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/media/gallery//we\
bp/shop-press-assembly.webp"
meta:
format: jpeg
width: 1900
height: 1520
space: srgb
channels: 3
depth: uchar
density: 96
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1520
description: 1520px
Image Width:
value: 1900
description: 1900px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
JFIF Version:
value: 257
description: "1.1"
Resolution Unit:
value: 1
description: inches
XResolution:
value: 96
description: "96"
YResolution:
value: 96
description: "96"
JFIF Thumbnail Width:
description: 0px
JFIF Thumbnail Height:
description: 0px
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1900
height: 1520
title: ""
title: "Sheetpress Cassandra - EDC650"
author: PlasticHub
description: "Small sheetpress for small and medium size parts. Ideal for small series and prototyping."
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress Cassandra - EDC650</h1>
<p class="fs-3">Petite presse à feuilles pour les pièces de petite et moyenne taille. Idéale pour les petites séries et le prototypage.</p>
<p class="fs-2 text-danger">Prix: L'euro</p>
<ul class="list-unstyled">
<ul>
<li>Epaisseur de la feuille jusqu'à 30 mm</li>
<li>15T de pression</li>
</ul> </ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<p>Flexible, modular dual sheetpress, including a heat and cooling press.</p>
<h2 id="detailsfeatures">Details / Features</h2>
<ul>
<li>Sheet thickness up to 30mm</li>
<li>15T of pressure</li>
<li>Stackable and interlockable (600x1300cm sheets)</li>
<li>cartridge heaters are embedded in the heat plates, enabling 30% better heat efficiency</li>
<li>Press plate options: heating, passive or active cooling</li>
<li>the hydraulic jack has a pneumatic port, to use a compressor instead</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spécifications</h4>
<table>
<thead>
<tr>
<th>Nom</th>
<th>Cassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pression</td>
<td>15T - Cric hydraulique avec entraînement pneumatique</td>
</tr>
<tr>
<td>Presse - Taille de la plaque</td>
<td>65cm</td>
</tr>
<tr>
<td>Presse - Plaques</td>
<td>2-3</td>
</tr>
<tr>
<td>Options</td>
<td>2 Plaques de refroidissement actif</td>
</tr>
<tr>
<td>Taille de la feuille</td>
<td>60cm</td>
</tr>
<tr>
<td>L'électricité</td>
<td>220V</td>
</tr>
<tr>
<td>Puissance</td>
<td>6 - 9 KW</td>
</tr>
<tr>
<td>Statut</td>
<td>Développement</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Révision A)</td>
</tr>
<tr>
<td>Licence</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Poids</td>
<td>180 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Ressources
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Télécharger ](https://files.osr-plastic.org/files/osr-machines/sheetpress/cassandra-edczmax-rc1)
- [ aperçu 3D ](https://assets.osr-plastic.org:433/sheetpress/cassandra-edczmax-rc1/resources/edrawings.html)
- [ Dépôt de code source ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/cassandra-edczmax-rc1)
<hr/>
<h3>Conditions de paiement</h3>
<b>Machines industrielles</b> : 100% du coût total de la (des) machine(s) à payer au moment de la commande.<br/>
<b>Machines fabriquées en interne</b> <br/>
70% du prix total de la (des) machine(s) à payer au moment de la commande.
Les 30% restants + les frais de transport sont à payer à la réception du numéro de suivi de l'expédition (aucune machine ne quitte l'atelier sans avoir été intégralement payée)
sans paiement intégral).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

View File

@ -0,0 +1,4 @@
---
title: Sheetpress - Composants
---
{{% children containerstyle="div" style="div" depth="999" showhidden="true" %}}

View File

@ -0,0 +1,239 @@
---
keywords:
- ""
rGallery:
- name: DSC01067
url: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery/DSC01067.j\
pg"
thumb: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//20/webp\
/DSC01067.webp"
responsive: "https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/media/gallery//we\
bp/DSC01067.webp"
meta:
format: jpeg
width: 1980
height: 1323
space: srgb
channels: 3
depth: uchar
density: 72
chromaSubsampling: 4:2:0
isProgressive: false
resolutionUnit: inch
hasProfile: false
hasAlpha: false
orientation: 1
exif:
Bits Per Sample:
value: 8
description: "8"
Image Height:
value: 1323
description: 1323px
Image Width:
value: 1980
description: 1980px
Color Components:
value: 3
description: "3"
Subsampling:
description: YCbCr4:2:0 (2 2)
Orientation:
value: 1
description: top-left
XResolution:
description: "72"
YResolution:
description: "72"
ResolutionUnit:
value: 2
description: inches
YCbCrPositioning:
value: 1
description: centered
Exif IFD Pointer:
value: 102
description: 102
ExifVersion:
description: "0210"
ComponentsConfiguration:
description: ""
FlashpixVersion:
description: "0100"
ColorSpace:
value: 65535
description: Uncalibrated
PixelXDimension:
value: 1980
description: 1980
PixelYDimension:
value: 1323
description: 1323
FileType:
value: jpeg
description: JPEG
keywords:
- ""
description: ""
alt: " - "
width: 1980
height: 1323
title: ""
title: "Sheetpress cell module - 650"
author: PlasticHub
description: ""
category: Plastic_Extrusion_Machines
client: Universities and R&D services
prices: 1800 - 12002 Euro
built: "2023"
debug: false
---
## Product
<div class="container my-4">
<div class="row">
<div class="col-md-6">
<div style="width:100%; height:500px;margin:auto">
{{% rhGallery %}}
</div>
</div>
<div class="col-md-6">
<h1 style="text-align: left;" >Sheetpress cell module - 650</h1>
<p class="fs-3"></p>
<p class="fs-2 text-danger">Prix: 4800 L'euro</p>
<ul class="list-unstyled">
</ul>
<a href="#" class="btn btn-lg btn-warning text-dark mt-3">Add to Cart</a>
</div>
</div>
<div class="row mt-2">
<div class="col">
<h1 id="sheetpressmodule650">Sheetpress Module - 650</h1>
<h2 id="featuresdetails">Features / Details</h2>
<ul>
<li>15mm 5038 Aluminum plates, precision cut and ground</li>
<li>9 Cartridge heaters, 12mm diameter, 80mm long, 300W, embedded in the heat-plate for maximum contact and lifespan</li>
<li>the module is compatible with <a href="https://shop.osr-plastic.org/sheetpress/cassanda-light/">'Cassandra Light'</a>. Larger designs as a 2x2 arrangments are also available in the <a href="https://files.osr-plastic.org/files/osr-machines/sheetpress/">library</a></li>
<li>the lower support ribs can be removed</li>
<li>point to point temperature differences are within a 2 degree celsius range</li>
<li>warmup time - 220V : 20 minutes, 400V: 10 minutes</li>
<li>low heating oscillation, approximately every 15 seconds</li>
</ul>
</div>
</div>
</div>
<div style="clear:both"></div>
<div style="padding:16px;text-align: center;">
<div class="ty-vendor-plans">
<div class="ty-grid-list__item" style="border: 1px gray;">
<h4 id="authors">Spécifications</h4>
<table>
<thead>
<tr>
<th>Nom</th>
<th>Cassandra - EDC</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pression</td>
<td>15T - Cric hydraulique avec entraînement pneumatique</td>
</tr>
<tr>
<td>Presse - Taille de la plaque</td>
<td>65cm</td>
</tr>
<tr>
<td>Presse - Plaques</td>
<td>2-3</td>
</tr>
<tr>
<td>Options</td>
<td>2 Plaques de refroidissement actif</td>
</tr>
<tr>
<td>Taille de la feuille</td>
<td>60cm</td>
</tr>
<tr>
<td>L'électricité</td>
<td>220V</td>
</tr>
<tr>
<td>Puissance</td>
<td>6 - 9 KW</td>
</tr>
<tr>
<td>Statut</td>
<td>Développement</td>
</tr>
<tr>
<td>Version</td>
<td>V1.0 (Révision A)</td>
</tr>
<tr>
<td>Licence</td>
<td><a href="https://ohwr.org/cern_ohl_s_v2.txt">CERN OHL v2</a></td>
</tr>
<tr>
<td>Poids</td>
<td>180 Kg</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
### Ressources
- [Forum](https://forum.osr-plastic.org/c/machines/sheetpress/63)
- [ Télécharger ](https://files.osr-plastic.org/files/osr-machines/sheetpress/components/sprcb-650-light)
- [ aperçu 3D ](https://assets.osr-plastic.org:433/sheetpress/components/sprcb-650-light/resources/edrawings.html)
- [ Dépôt de code source ](https://git.osr-plastic.org/osr-plastic/osr-machines/src/branch/master/sheetpress/components/sprcb-650-light)
<hr/>
<h3>Expédition</h3>
<b> Frais d'expédition en Europe </b>: 100 Euro <br/>
<h3>Conditions de paiement</h3>
<b>Machines industrielles</b> : 100% du coût total de la (des) machine(s) à payer au moment de la commande.<br/>
<b>Machines fabriquées en interne</b> <br/>
70% du prix total de la (des) machine(s) à payer au moment de la commande.
Les 30% restants + les frais de transport sont à payer à la réception du numéro de suivi de l'expédition (aucune machine ne quitte l'atelier sans avoir été intégralement payée)
sans paiement intégral).
<table>
<tbody>
<tr>
<td>
<a href="https://www.instagram.com/osr_plastic/">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/instagram-logo.png" />
</a>
</td>
<td>
<a alt="Open Source Projects" href="https://git.osr-plastic.org/osr-plastic">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/github.png" />
</a>
</td>
<td>
<a alt="" href="tel:0034691952287">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/007-whatsapp.png" />
</a>
</td>
<td>
<a alt="" href="mailto:sales@plastic-hub.com">
<img width="30px"
src="https://assets.osr-plastic.org:433/assets/icons/012-mail-2.png" />
</a>
</td>
</tr>
</tbody>
</table>

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