latest :)

This commit is contained in:
lovebird 2024-08-18 21:05:57 +02:00
parent c0ecbf3fd0
commit 171fead779
1020 changed files with 217086 additions and 591 deletions

16
products/poly-mech/.gitattributes vendored Normal file
View File

@ -0,0 +1,16 @@
*.pdf filter=lfs diff=lfs merge=lfs -text
*.igs filter=lfs diff=lfs merge=lfs -text
*.iges filter=lfs diff=lfs merge=lfs -text
*.step filter=lfs diff=lfs merge=lfs -text
SLDASM filter=lfs diff=lfs merge=lfs -text
STEP filter=lfs diff=lfs merge=lfs -text
jpg filter=lfs diff=lfs merge=lfs -text
*.SLDASM filter=lfs diff=lfs merge=lfs -text
*.jpg filter=lfs diff=lfs merge=lfs -text
*.png filter=lfs diff=lfs merge=lfs -text
*.SLDPRT filter=lfs diff=lfs merge=lfs -text
*.zip filter=lfs diff=lfs merge=lfs -text
*.mp4 filter=lfs diff=lfs merge=lfs -text
*.x_t filter=lfs diff=lfs merge=lfs -text
*.exe filter=lfs diff=lfs merge=lfs -text
*.mkv filter=lfs diff=lfs merge=lfs -text

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

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
}
}

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/**"
]
}

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
products/poly-mech/.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"
}
]
}

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,199 @@
CERN Open Hardware Licence Version 2 - Permissive
Preamble
CERN has developed this licence to promote collaboration among
hardware designers and to provide a legal tool which supports the
freedom to use, study, modify, share and distribute hardware designs
and products based on those designs. Version 2 of the CERN Open
Hardware Licence comes in three variants: this licence, CERN-OHL-P
(permissive); and two reciprocal licences: CERN-OHL-W (weakly
reciprocal) and CERN-OHL-S (strongly reciprocal).
The CERN-OHL-P is copyright CERN 2020. Anyone is welcome to use it, in
unmodified form only.
Use of this Licence does not imply any endorsement by CERN of any
Licensor or their designs nor does it imply any involvement by CERN in
their development.
1 Definitions
1.1 'Licence' means this CERN-OHL-P.
1.2 'Source' means information such as design materials or digital
code which can be applied to Make or test a Product or to
prepare a Product for use, Conveyance or sale, regardless of its
medium or how it is expressed. It may include Notices.
1.3 'Covered Source' means Source that is explicitly made available
under this Licence.
1.4 'Product' means any device, component, work or physical object,
whether in finished or intermediate form, arising from the use,
application or processing of Covered Source.
1.5 'Make' means to create or configure something, whether by
manufacture, assembly, compiling, loading or applying Covered
Source or another Product or otherwise.
1.6 'Notice' means copyright, acknowledgement and trademark notices,
references to the location of any Notices, modification notices
(subsection 3.3(b)) and all notices that refer to this Licence
and to the disclaimer of warranties that are included in the
Covered Source.
1.7 'Licensee' or 'You' means any person exercising rights under
this Licence.
1.8 'Licensor' means a person who creates Source or modifies Covered
Source and subsequently Conveys the resulting Covered Source
under the terms and conditions of this Licence. A person may be
a Licensee and a Licensor at the same time.
1.9 'Convey' means to communicate to the public or distribute.
2 Applicability
2.1 This Licence governs the use, copying, modification, Conveying
of Covered Source and Products, and the Making of Products. By
exercising any right granted under this Licence, You irrevocably
accept these terms and conditions.
2.2 This Licence is granted by the Licensor directly to You, and
shall apply worldwide and without limitation in time.
2.3 You shall not attempt to restrict by contract or otherwise the
rights granted under this Licence to other Licensees.
2.4 This Licence is not intended to restrict fair use, fair dealing,
or any other similar right.
3 Copying, Modifying and Conveying Covered Source
3.1 You may copy and Convey verbatim copies of Covered Source, in
any medium, provided You retain all Notices.
3.2 You may modify Covered Source, other than Notices.
You may only delete Notices if they are no longer applicable to
the corresponding Covered Source as modified by You and You may
add additional Notices applicable to Your modifications.
3.3 You may Convey modified Covered Source (with the effect that You
shall also become a Licensor) provided that You:
a) retain Notices as required in subsection 3.2; and
b) add a Notice to the modified Covered Source stating that You
have modified it, with the date and brief description of how
You have modified it.
3.4 You may Convey Covered Source or modified Covered Source under
licence terms which differ from the terms of this Licence
provided that:
a) You comply at all times with subsection 3.3; and
b) You provide a copy of this Licence to anyone to whom You
Convey Covered Source or modified Covered Source.
4 Making and Conveying Products
You may Make Products, and/or Convey them, provided that You ensure
that the recipient of the Product has access to any Notices applicable
to the Product.
5 DISCLAIMER AND LIABILITY
5.1 DISCLAIMER OF WARRANTY -- The Covered Source and any Products
are provided 'as is' and any express or implied warranties,
including, but not limited to, implied warranties of
merchantability, of satisfactory quality, non-infringement of
third party rights, and fitness for a particular purpose or use
are disclaimed in respect of any Source or Product to the
maximum extent permitted by law. The Licensor makes no
representation that any Source or Product does not or will not
infringe any patent, copyright, trade secret or other
proprietary right. The entire risk as to the use, quality, and
performance of any Source or Product shall be with You and not
the Licensor. This disclaimer of warranty is an essential part
of this Licence and a condition for the grant of any rights
granted under this Licence.
5.2 EXCLUSION AND LIMITATION OF LIABILITY -- The Licensor shall, to
the maximum extent permitted by law, have no liability for
direct, indirect, special, incidental, consequential, exemplary,
punitive or other damages of any character including, without
limitation, procurement of substitute goods or services, loss of
use, data or profits, or business interruption, however caused
and on any theory of contract, warranty, tort (including
negligence), product liability or otherwise, arising in any way
in relation to the Covered Source, modified Covered Source
and/or the Making or Conveyance of a Product, even if advised of
the possibility of such damages, and You shall hold the
Licensor(s) free and harmless from any liability, costs,
damages, fees and expenses, including claims by third parties,
in relation to such use.
6 Patents
6.1 Subject to the terms and conditions of this Licence, each
Licensor hereby grants to You a perpetual, worldwide,
non-exclusive, no-charge, royalty-free, irrevocable (except as
stated in this section 6, or where terminated by the Licensor
for cause) patent license to Make, have Made, use, offer to
sell, sell, import, and otherwise transfer the Covered Source
and Products, where such licence applies only to those patent
claims licensable by such Licensor that are necessarily
infringed by exercising rights under the Covered Source as
Conveyed by that Licensor.
6.2 If You institute patent litigation against any entity (including
a cross-claim or counterclaim in a lawsuit) alleging that the
Covered Source or a Product constitutes direct or contributory
patent infringement, or You seek any declaration that a patent
licensed to You under this Licence is invalid or unenforceable
then any rights granted to You under this Licence shall
terminate as of the date such process is initiated.
7 General
7.1 If any provisions of this Licence are or subsequently become
invalid or unenforceable for any reason, the remaining
provisions shall remain effective.
7.2 You shall not use any of the name (including acronyms and
abbreviations), image, or logo by which the Licensor or CERN is
known, except where needed to comply with section 3, or where
the use is otherwise allowed by law. Any such permitted use
shall be factual and shall not be made so as to suggest any kind
of endorsement or implication of involvement by the Licensor or
its personnel.
7.3 CERN may publish updated versions and variants of this Licence
which it considers to be in the spirit of this version, but may
differ in detail to address new problems or concerns. New
versions will be published with a unique version number and a
variant identifier specifying the variant. If the Licensor has
specified that a given variant applies to the Covered Source
without specifying a version, You may treat that Covered Source
as being released under any version of the CERN-OHL with that
variant. If no variant is specified, the Covered Source shall be
treated as being released under CERN-OHL-S. The Licensor may
also specify that the Covered Source is subject to a specific
version of the CERN-OHL or any later version in which case You
may apply this or any later version of CERN-OHL with the same
variant identifier published by CERN.
7.4 This Licence shall not be enforceable except by a Licensor
acting as such, and third party beneficiary rights are
specifically excluded.

View File

@ -45,9 +45,33 @@
### Fasteners
### Structures
- [Aluminium Tubings](./resources/framework/al-tubings.md)
- [Bamboo](./resources/framework/bamboo.md)
## Motion
- [SBR / SBUU](./resources/motion/sbr/readme.md)
- [Bearings]
## Connectivity
- [Hoses]
### Motion / Bearings
### Materials
### Materials & Tests
- [HDPE](./resources/material/hdpe/)
## Projects / Applications
- [ ] Cart
- [ ] suspension
- [ ] adjustable shelfs
- [ ] stands
- [ ] AV gear
### Production

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,30 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\SlideDual-20ID-50H-100W.SLDASM"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\bolts and screws\\hex head\\formed hex screw_am.sldprt"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\nuts\\hex nuts\\hex nut jam_am.sldprt"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\Fasteners-M6.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\20-40-100_WasherM6_x4_1mm_INOX.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\2040_Shield_x2_1mm_INOX.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\SlideSingle-20ID-50D-50W.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-50\\SlideDual-20ID-50D-100W.SLDPRT",
"Total Bounding Box Length": "100",
"Total Bounding Box Width": "50",
"Total Bounding Box Thickness": "50",
"Total Bounding Box Volume": "250000"
}
]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,541 @@
[
{
"code": 0,
"command": "ExportHTML.exe \"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM\" \"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.html\"",
"messages": [],
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"target": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.html",
"failed": false,
"options": {
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"dst": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"debug": false,
"verbose": true,
"dry": false,
"cache": true,
"hidden": "true",
"renderer": "Solidworks",
"alt": true,
"quality": 2,
"logLevel": "info",
"width": "1024",
"height": "1024",
"script": "convert.exe",
"sw": 2022,
"swv": 30,
"configuration": "Default",
"report": "${SRC_DIR}/cad-report-${CONFIGURATION}.json",
"pack": false,
"light": false,
"rebuild": false,
"save": false,
"variables": {
"SRC_PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"SRC_DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"SRC_NAME": "SlideDual-20ID-40H-100W",
"SRC_FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"SRC_FILE_EXT": "SLDASM",
"SRC_IS_FILE": true,
"SRC_IS_FOLDER": false,
"SRC_IS_EXPRESSION": false,
"SRC_IS_GLOB": false,
"SRC_FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
],
"DST_PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"DST_NAME": "&{SRC_NAME}",
"DST_FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_FILE_EXT": "+(html|step|x_t|json|jpg)",
"DST_IS_FILE": false,
"DST_IS_FOLDER": false,
"DST_IS_EXPRESSION": false,
"DST_IS_GLOB": true,
"DST_GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"DST_FILES": []
},
"view": "Render",
"args": "",
"bom-config": "Default",
"bom-detail": 1,
"bom-type": 2,
"bom-images": false,
"srcInfo": {
"PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"NAME": "SlideDual-20ID-40H-100W",
"FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"FILE_EXT": "SLDASM",
"IS_FILE": true,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": false,
"FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
]
},
"dstInfo": {
"PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"NAME": "&{SRC_NAME}",
"FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"FILE_EXT": "+(html|step|x_t|json|jpg)",
"IS_FILE": false,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": true,
"GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"FILES": []
}
}
},
{
"code": 0,
"command": "convert.exe --source=\"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM\" --target=\"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.step\" --configuration=\"Default\" --view=\"*Render\" --hidden=true --width=1024 --height=1024 --swv=30 --renderer=solidworks --quality=2",
"messages": [
"Changed view: *Render",
"Failed to change configuration: Default",
"IPC error:timeout",
"Conversion successful. Output file saved to: C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.step "
],
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"target": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.step",
"failed": false,
"options": {
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"dst": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"debug": false,
"verbose": true,
"dry": false,
"cache": true,
"hidden": "true",
"renderer": "Solidworks",
"alt": true,
"quality": 2,
"logLevel": "info",
"width": "1024",
"height": "1024",
"script": "convert.exe",
"sw": 2022,
"swv": 30,
"configuration": "Default",
"report": "${SRC_DIR}/cad-report-${CONFIGURATION}.json",
"pack": false,
"light": false,
"rebuild": false,
"save": false,
"variables": {
"SRC_PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"SRC_DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"SRC_NAME": "SlideDual-20ID-40H-100W",
"SRC_FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"SRC_FILE_EXT": "SLDASM",
"SRC_IS_FILE": true,
"SRC_IS_FOLDER": false,
"SRC_IS_EXPRESSION": false,
"SRC_IS_GLOB": false,
"SRC_FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
],
"DST_PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"DST_NAME": "&{SRC_NAME}",
"DST_FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_FILE_EXT": "+(html|step|x_t|json|jpg)",
"DST_IS_FILE": false,
"DST_IS_FOLDER": false,
"DST_IS_EXPRESSION": false,
"DST_IS_GLOB": true,
"DST_GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"DST_FILES": []
},
"view": "Render",
"args": "",
"bom-config": "Default",
"bom-detail": 1,
"bom-type": 2,
"bom-images": false,
"srcInfo": {
"PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"NAME": "SlideDual-20ID-40H-100W",
"FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"FILE_EXT": "SLDASM",
"IS_FILE": true,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": false,
"FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
]
},
"dstInfo": {
"PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"NAME": "&{SRC_NAME}",
"FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"FILE_EXT": "+(html|step|x_t|json|jpg)",
"IS_FILE": false,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": true,
"GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"FILES": []
}
}
},
{
"code": 0,
"command": "convert.exe --source=\"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM\" --target=\"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.x_t\" --configuration=\"Default\" --view=\"*Render\" --hidden=true --width=1024 --height=1024 --swv=30 --renderer=solidworks --quality=2",
"messages": [
"Changed view: *Render",
"Failed to change configuration: Default",
"IPC error:timeout",
"Conversion successful. Output file saved to: C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.x_t "
],
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"target": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.x_t",
"failed": false,
"options": {
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"dst": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"debug": false,
"verbose": true,
"dry": false,
"cache": true,
"hidden": "true",
"renderer": "Solidworks",
"alt": true,
"quality": 2,
"logLevel": "info",
"width": "1024",
"height": "1024",
"script": "convert.exe",
"sw": 2022,
"swv": 30,
"configuration": "Default",
"report": "${SRC_DIR}/cad-report-${CONFIGURATION}.json",
"pack": false,
"light": false,
"rebuild": false,
"save": false,
"variables": {
"SRC_PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"SRC_DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"SRC_NAME": "SlideDual-20ID-40H-100W",
"SRC_FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"SRC_FILE_EXT": "SLDASM",
"SRC_IS_FILE": true,
"SRC_IS_FOLDER": false,
"SRC_IS_EXPRESSION": false,
"SRC_IS_GLOB": false,
"SRC_FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
],
"DST_PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"DST_NAME": "&{SRC_NAME}",
"DST_FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_FILE_EXT": "+(html|step|x_t|json|jpg)",
"DST_IS_FILE": false,
"DST_IS_FOLDER": false,
"DST_IS_EXPRESSION": false,
"DST_IS_GLOB": true,
"DST_GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"DST_FILES": []
},
"view": "Render",
"args": "",
"bom-config": "Default",
"bom-detail": 1,
"bom-type": 2,
"bom-images": false,
"srcInfo": {
"PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"NAME": "SlideDual-20ID-40H-100W",
"FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"FILE_EXT": "SLDASM",
"IS_FILE": true,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": false,
"FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
]
},
"dstInfo": {
"PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"NAME": "&{SRC_NAME}",
"FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"FILE_EXT": "+(html|step|x_t|json|jpg)",
"IS_FILE": false,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": true,
"GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"FILES": []
}
}
},
{
"code": 0,
"command": "model-reader.exe --source=\"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.SLDASM\" --target=\"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.json\"",
"messages": [
"Failed to change configuration C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.SLDASM : Default",
"Serialized to C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.json",
"Serialized Tree to C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.tree.json"
],
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"target": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.json",
"failed": false,
"options": {
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"dst": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"debug": false,
"verbose": true,
"dry": false,
"cache": true,
"hidden": "true",
"renderer": "Solidworks",
"alt": true,
"quality": 2,
"logLevel": "info",
"width": "1024",
"height": "1024",
"script": "convert.exe",
"sw": 2022,
"swv": 30,
"configuration": "Default",
"report": "${SRC_DIR}/cad-report-${CONFIGURATION}.json",
"pack": false,
"light": false,
"rebuild": false,
"save": false,
"variables": {
"SRC_PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"SRC_DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"SRC_NAME": "SlideDual-20ID-40H-100W",
"SRC_FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"SRC_FILE_EXT": "SLDASM",
"SRC_IS_FILE": true,
"SRC_IS_FOLDER": false,
"SRC_IS_EXPRESSION": false,
"SRC_IS_GLOB": false,
"SRC_FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
],
"DST_PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"DST_NAME": "&{SRC_NAME}",
"DST_FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_FILE_EXT": "+(html|step|x_t|json|jpg)",
"DST_IS_FILE": false,
"DST_IS_FOLDER": false,
"DST_IS_EXPRESSION": false,
"DST_IS_GLOB": true,
"DST_GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"DST_FILES": []
},
"view": "Render",
"args": "",
"bom-config": "Default",
"bom-detail": 1,
"bom-type": 2,
"bom-images": false,
"srcInfo": {
"PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"NAME": "SlideDual-20ID-40H-100W",
"FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"FILE_EXT": "SLDASM",
"IS_FILE": true,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": false,
"FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
]
},
"dstInfo": {
"PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"NAME": "&{SRC_NAME}",
"FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"FILE_EXT": "+(html|step|x_t|json|jpg)",
"IS_FILE": false,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": true,
"GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"FILES": []
}
}
},
{
"code": 0,
"command": "convert.exe --source=\"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM\" --target=\"C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.jpg\" --configuration=\"Default\" --view=\"*Render\" --hidden=true --width=1024 --height=1024 --swv=30 --renderer=solidworks --quality=2",
"messages": [
"Changed view: *Render",
"Failed to change configuration: Default",
"IPC error:timeout",
"Conversion successful. Output file saved to: C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.jpg "
],
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"target": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\SlideDual-20ID-40H-100W.jpg",
"failed": false,
"options": {
"src": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"dst": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"debug": false,
"verbose": true,
"dry": false,
"cache": true,
"hidden": "true",
"renderer": "Solidworks",
"alt": true,
"quality": 2,
"logLevel": "info",
"width": "1024",
"height": "1024",
"script": "convert.exe",
"sw": 2022,
"swv": 30,
"configuration": "Default",
"report": "${SRC_DIR}/cad-report-${CONFIGURATION}.json",
"pack": false,
"light": false,
"rebuild": false,
"save": false,
"variables": {
"SRC_PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"SRC_DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"SRC_NAME": "SlideDual-20ID-40H-100W",
"SRC_FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"SRC_FILE_EXT": "SLDASM",
"SRC_IS_FILE": true,
"SRC_IS_FOLDER": false,
"SRC_IS_EXPRESSION": false,
"SRC_IS_GLOB": false,
"SRC_FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
],
"DST_PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"DST_NAME": "&{SRC_NAME}",
"DST_FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_FILE_EXT": "+(html|step|x_t|json|jpg)",
"DST_IS_FILE": false,
"DST_IS_FOLDER": false,
"DST_IS_EXPRESSION": false,
"DST_IS_GLOB": true,
"DST_GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DST_GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"DST_FILES": []
},
"view": "Render",
"args": "",
"bom-config": "Default",
"bom-detail": 1,
"bom-type": 2,
"bom-images": false,
"srcInfo": {
"PATH": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM",
"DIR": "C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40",
"NAME": "SlideDual-20ID-40H-100W",
"FILE_NAME": "SlideDual-20ID-40H-100W.SLDASM",
"FILE_EXT": "SLDASM",
"IS_FILE": true,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": false,
"FILES": [
"C:/Users/mc007/Desktop/osr/products/products/products/poly-mech/cad/joints/slide-clamp-20ID-100-40/SlideDual-20ID-40H-100W.SLDASM"
]
},
"dstInfo": {
"PATH": "&{SRC_DIR}/&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"DIR": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-100-40",
"NAME": "&{SRC_NAME}",
"FILE_NAME": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"FILE_EXT": "+(html|step|x_t|json|jpg)",
"IS_FILE": false,
"IS_FOLDER": false,
"IS_EXPRESSION": false,
"IS_GLOB": true,
"GLOB": "\\&{SRC_DIR}\\&{SRC_NAME}.+(html|step|x_t|json|jpg)",
"GLOB_EXTENSIONS": [
"html",
"step",
"x_t",
"json",
"jpg"
],
"FILES": []
}
}
}
]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,23 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-120-40\\SlideDual-20ID-40H.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-120-40\\2024_WasherM6_x4_1mm_INOX.SLDPRT"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\nuts\\hex nuts\\hex nut jam_am.sldprt"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\bolts and screws\\hex head\\formed hex screw_am.sldprt"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-120-40\\Fasteners.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-120-40\\2040_Shield_x2_1mm_INOX.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-20ID-120-40\\SlideDual-20ID-40D-120W.SLDPRT"
}
]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,20 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-25ID-80-40\\SlideDual-25ID-40H.SLDASM"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\bolts and screws\\hex head\\formed hex screw_am.sldprt"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\nuts\\hex nuts\\hex nut jam_am.sldprt"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-25ID-80-40\\Fasteners.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-25ID-80-40\\Cover.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-25ID-80-40\\SlideDual-25ID-60D-120W.SLDPRT"
}
]

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,35 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-40ID-80-60\\SlideDual-25ID-40OD-58H.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-40ID-80-60\\Cover.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-40ID-80-60\\SlideDual-40ID-60D-120W.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015_02.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015_03.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015_05.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015_04.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015_01.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\clamps\\clamping_lever\\150318723-7-6355015\\6355015.SLDASM"
},
{
"File Path": "c:\\solidworks data (2)\\browser\\ansi metric\\bolts and screws\\hex head\\formed hex screw_am.sldprt"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slide-clamp-40ID-80-60\\Fasteners.SLDASM"
}
]

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
products/poly-mech/cad/joints/slides-20/lbbr20-skf.SLDPRT (Stored with Git LFS) Normal file

Binary file not shown.

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,14 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\SlideDual-25ID-40OD-40H.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\254040_Cover_x2_1mm_INOX.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\SlideDual-25ID-40OD-58H.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\lbbr25-skf.SLDPRT"
}
]

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,242 @@
{
"assembly": {
"Components": [
{
"Name": "254040_Cover_x2_1mm_INOX-1",
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\254040_Cover_x2_1mm_INOX.SLDPRT",
"IsSuppressed": false
},
{
"Name": "SlideDual-25ID-40OD-58H-1",
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\SlideDual-25ID-40OD-58H.SLDPRT",
"IsSuppressed": false
},
{
"Name": "lbbr25-skf-2",
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\lbbr25-skf.SLDPRT",
"IsSuppressed": false
},
{
"Name": "lbbr25-skf-1",
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\lbbr25-skf.SLDPRT",
"IsSuppressed": false
},
{
"Name": "254040_Cover_x2_1mm_INOX-2",
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\254040_Cover_x2_1mm_INOX.SLDPRT",
"IsSuppressed": false
}
]
},
"root": {
"Name": "SlideDual-25ID-40OD-40H",
"Children": [
{
"Name": "254040_Cover_x2_1mm_INOX-1",
"Children": null,
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\254040_Cover_x2_1mm_INOX.SLDPRT",
"Parent": null,
"Properties": {
"Default": {}
},
"Equations": {},
"Mass": {
"Mass": 0.009330892603550175,
"Density": 999.9999999999999,
"Volume": 9.330892603550176E-06,
"SurfaceArea": 0.019369785158869383,
"CenterOfMassX": 2.2791193720873734E-17,
"CenterOfMassY": 1.7606236055061037E-18,
"CenterOfMassZ": 0.0005
},
"Box": {
"MinX": 0.02329492920064055,
"MinY": 0.019999999999999803,
"MinZ": -0.024964147892343712,
"MaxX": 0.17329492920064057,
"MaxY": 0.021000000000000095,
"MaxZ": 0.05503585210765632
},
"Material": {
"Material": "",
"Materials": ""
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": null
},
{
"Name": "SlideDual-25ID-40OD-58H-1",
"Children": null,
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\SlideDual-25ID-40OD-58H.SLDPRT",
"Parent": null,
"Properties": {
"Default": {},
"RailGuides": {}
},
"Equations": {},
"Mass": {
"Mass": 0.8762336052701583,
"Density": 2700.0,
"Volume": 0.00032453096491487344,
"SurfaceArea": 0.04193274122871835,
"CenterOfMassX": -8.832916358123244E-18,
"CenterOfMassY": 2.266097195383432E-18,
"CenterOfMassZ": 0.02
},
"Box": {
"MinX": 0.023294929200640538,
"MinY": -0.02000000000000019,
"MinZ": -0.02496414789234385,
"MaxX": 0.17329492920064055,
"MaxY": 0.020000000000000087,
"MaxZ": 0.05503585210765632
},
"Material": {
"Material": "6061 Alloy",
"Materials": "SOLIDWORKS Materials"
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": null
},
{
"Name": "lbbr25-skf-2",
"Children": null,
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\lbbr25-skf.SLDPRT",
"Parent": null,
"Properties": {
"Default": {}
},
"Equations": {},
"Mass": {
"Mass": 0.030630528372500493,
"Density": 1000.0,
"Volume": 3.063052837250049E-05,
"SurfaceArea": 0.009699667317958486,
"CenterOfMassX": -2.6957813787392908E-18,
"CenterOfMassY": 0.0,
"CenterOfMassZ": 0.019999999999999997
},
"Box": {
"MinX": 0.10583332041402718,
"MinY": -0.020000000000000153,
"MinZ": -0.012425756678957222,
"MaxX": 0.16075653798725395,
"MaxY": 0.02000000000000005,
"MaxZ": 0.042497460894269694
},
"Material": {
"Material": "",
"Materials": ""
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": null
},
{
"Name": "lbbr25-skf-1",
"Children": null,
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\lbbr25-skf.SLDPRT",
"Parent": null,
"Properties": {
"Default": {}
},
"Equations": {},
"Mass": {
"Mass": 0.030630528372500493,
"Density": 1000.0,
"Volume": 3.063052837250049E-05,
"SurfaceArea": 0.009699667317958486,
"CenterOfMassX": -2.6957813787392908E-18,
"CenterOfMassY": 0.0,
"CenterOfMassZ": 0.019999999999999997
},
"Box": {
"MinX": 0.03886839820528898,
"MinY": -0.020000000000000143,
"MinZ": -0.00939067888769543,
"MaxX": 0.08772146019599214,
"MaxY": 0.02000000000000004,
"MaxZ": 0.039462383103007884
},
"Material": {
"Material": "",
"Materials": ""
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": null
},
{
"Name": "254040_Cover_x2_1mm_INOX-2",
"Children": null,
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\254040_Cover_x2_1mm_INOX.SLDPRT",
"Parent": null,
"Properties": {
"Default": {}
},
"Equations": {},
"Mass": {
"Mass": 0.009330892603550175,
"Density": 999.9999999999999,
"Volume": 9.330892603550176E-06,
"SurfaceArea": 0.019369785158869383,
"CenterOfMassX": 2.2791193720873734E-17,
"CenterOfMassY": 1.7606236055061037E-18,
"CenterOfMassZ": 0.0005
},
"Box": {
"MinX": 0.02329492920064055,
"MinY": -0.021000000000000088,
"MinZ": -0.024964147892343858,
"MaxX": 0.17329492920064057,
"MaxY": -0.019999999999999823,
"MaxZ": 0.05503585210765617
},
"Material": {
"Material": "",
"Materials": ""
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": null
}
],
"Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-hex\\SlideDual-25ID-40OD-40H.SLDASM",
"Parent": null,
"Properties": {
"Default": {}
},
"Equations": {},
"Mass": {
"Mass": 0.9561564472222595,
"Density": 2364.068358334776,
"Volume": 0.00040445380686697475,
"SurfaceArea": 0.1000716461823741,
"CenterOfMassX": 0.09829492920064058,
"CenterOfMassY": -5.133809796700648E-17,
"CenterOfMassZ": 0.015035852107656239
},
"Box": null,
"Material": {
"254040_Cover_x2_1mm_INOX-1": "",
"SlideDual-25ID-40OD-58H-1": "6061 Alloy",
"lbbr25-skf-2": "",
"lbbr25-skf-1": "",
"254040_Cover_x2_1mm_INOX-2": ""
},
"States": {},
"LaserParts": null,
"IsSuppressed": false,
"activeConfiguration": "Default"
},
"Configurations": {
"Default": {}
}
}

Binary file not shown.

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -1,17 +1,17 @@
[
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\polymech\\joints\\slides-25-quad\\SlideDual-25ID-40OD-58H-Tests.SLDASM"
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-quad\\SlideDual-25ID-40OD-58H-Tests.SLDASM"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\polymech\\joints\\slides-25-quad\\SlideQuad-25ID-60.SLDPRT"
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-quad\\Cover.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\polymech\\joints\\slides-25-quad\\Cover.SLDPRT"
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-quad\\SlideQuad-25ID-60.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\polymech\\joints\\slides-25-quad\\lbbr25-skf.SLDPRT"
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-quad\\lbbr25-skf.SLDPRT"
},
{
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\components\\hardware\\polymech\\joints\\slides-25-quad\\SlideDual-25ID-40OD-58H.SLDASM"
"File Path": "C:\\Users\\mc007\\Desktop\\osr\\products\\products\\products\\poly-mech\\cad\\joints\\slides-25-quad\\SlideDual-25ID-40OD-58H.SLDASM"
}
]

Binary file not shown.

Binary file not shown.

Binary file not shown.

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