Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DMDesign
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Amanda Ghassaei
DMDesign
Commits
66c59ee8
Commit
66c59ee8
authored
10 years ago
by
Amanda Ghassaei
Browse files
Options
Downloads
Patches
Plain Diff
pass move commands to cell
parent
b21c6dac
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
js/cam/Machine.js
+26
-22
26 additions, 22 deletions
js/cam/Machine.js
js/fea/DmaCell.js
+9
-0
9 additions, 0 deletions
js/fea/DmaCell.js
with
35 additions
and
22 deletions
js/cam/Machine.js
+
26
−
22
View file @
66c59ee8
...
@@ -70,7 +70,7 @@ Machine.prototype._reorganizeSpeed = function(speed){
...
@@ -70,7 +70,7 @@ Machine.prototype._reorganizeSpeed = function(speed){
return
newSpeed
;
return
newSpeed
;
}
}
Machine
.
prototype
.
_normalizeSpeed
=
function
(
startingPos
,
x
,
y
,
speed
){
Machine
.
prototype
.
_normalizeSpeed
=
function
(
startingPos
,
x
,
y
,
speed
){
//xy moves need speed normalization
var
normSpeed
=
{};
var
normSpeed
=
{};
if
(
x
==
""
||
y
==
""
)
return
speed
;
if
(
x
==
""
||
y
==
""
)
return
speed
;
var
deltaX
=
x
-
startingPos
.
x
;
var
deltaX
=
x
-
startingPos
.
x
;
...
@@ -83,29 +83,37 @@ Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){
...
@@ -83,29 +83,37 @@ Machine.prototype._normalizeSpeed = function(startingPos, x, y, speed){
return
normSpeed
;
return
normSpeed
;
};
};
Machine
.
prototype
.
_animate
Mesh
=
function
(
mesh
,
axis
,
speed
,
target
,
callback
){
Machine
.
prototype
.
_animate
Objects
=
function
(
objects
,
axis
,
speed
,
target
,
callback
){
var
increment
=
speed
/
10
;
//based on 1/10th of sec
var
increment
=
speed
/
5
;
//based on 1/10th of sec
if
(
increment
==
0
)
{
if
(
increment
==
0
)
{
if
(
callback
)
callback
();
if
(
callback
)
callback
();
return
;
return
;
}
}
var
direction
=
1
;
var
direction
=
1
;
if
(
target
-
mesh
.
position
[
axis
]
<
0
)
direction
=
-
1
;
if
(
target
-
objects
[
0
]
.
position
[
axis
]
<
0
)
direction
=
-
1
;
increment
=
Math
.
max
(
Math
.
abs
(
increment
)
,
0.00001
)
*
direction
;
//need to put a min on the increment - other wise this stall out with floating pt tol
increment
=
Math
.
max
(
increment
,
0.00001
)
*
direction
;
//need to put a min on the increment - other wise this stall out with floating pt tol
var
simSpeed
=
10
0
/
dmaGlobals
.
assembler
.
get
(
"
simSpeed
"
);
//1/10th of sec
var
simSpeed
=
5
0
/
dmaGlobals
.
assembler
.
get
(
"
simSpeed
"
);
//1/10th of sec
this
.
_incrementalMove
(
mesh
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
);
this
.
_incrementalMove
(
objects
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
);
};
};
Machine
.
prototype
.
_incrementalMove
=
function
(
mesh
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
){
Machine
.
prototype
.
_incrementalMove
=
function
(
objects
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
){
var
self
=
this
;
var
self
=
this
;
setTimeout
(
function
(){
setTimeout
(
function
(){
if
((
target
-
mesh
.
position
[
axis
])
*
direction
<=
0
)
{
if
((
target
-
objects
[
0
]
.
position
[
axis
])
*
direction
<=
0
)
{
if
(
callback
)
callback
();
if
(
callback
)
callback
();
return
;
return
;
}
}
if
(
Math
.
abs
(
target
-
mesh
.
position
[
axis
])
<
Math
.
abs
(
increment
))
mesh
.
position
[
axis
]
=
target
;
//don't overshoot
_
.
each
(
objects
,
function
(
object
){
else
mesh
.
position
[
axis
]
+=
increment
;
if
(
object
instanceof
DMACell
){
self
.
_incrementalMove
(
mesh
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
)
var
currentPosition
=
object
.
currentPosition
();
if
(
Math
.
abs
(
target
-
currentPosition
[
axis
])
<
Math
.
abs
(
increment
))
object
.
moveTo
(
target
,
axis
);
//don't overshoot
else
object
.
moveTo
(
currentPosition
[
axis
]
+
increment
,
axis
);
}
else
{
if
(
Math
.
abs
(
target
-
object
.
position
[
axis
])
<
Math
.
abs
(
increment
))
object
.
position
[
axis
]
=
target
;
//don't overshoot
else
object
.
position
[
axis
]
+=
increment
;
}
});
self
.
_incrementalMove
(
objects
,
axis
,
increment
,
target
,
direction
,
callback
,
simSpeed
)
},
simSpeed
);
},
simSpeed
);
};
};
...
@@ -144,7 +152,6 @@ Shopbot.prototype._buildMeshes = function(callback){
...
@@ -144,7 +152,6 @@ Shopbot.prototype._buildMeshes = function(callback){
};
};
Shopbot
.
prototype
.
moveTo
=
function
(
x
,
y
,
z
,
speed
,
wcs
,
callback
){
Shopbot
.
prototype
.
moveTo
=
function
(
x
,
y
,
z
,
speed
,
wcs
,
callback
){
var
endEffector
=
this
.
meshes
[
0
];
var
totalThreads
=
3
;
var
totalThreads
=
3
;
function
sketchyCallback
(){
function
sketchyCallback
(){
totalThreads
-=
1
;
totalThreads
-=
1
;
...
@@ -154,10 +161,10 @@ Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){
...
@@ -154,10 +161,10 @@ Shopbot.prototype.moveTo = function(x, y, z, speed, wcs, callback){
x
=
this
.
_makeAbsPosition
(
x
,
wcs
.
x
);
x
=
this
.
_makeAbsPosition
(
x
,
wcs
.
x
);
y
=
this
.
_makeAbsPosition
(
y
,
wcs
.
y
);
y
=
this
.
_makeAbsPosition
(
y
,
wcs
.
y
);
z
=
this
.
_makeAbsPosition
(
z
,
wcs
.
z
);
z
=
this
.
_makeAbsPosition
(
z
,
wcs
.
z
);
speed
=
this
.
_normalizeSpeed
(
endEffector
.
position
,
x
,
y
,
this
.
_reorganizeSpeed
(
speed
));
speed
=
this
.
_normalizeSpeed
(
this
.
meshes
[
0
]
.
position
,
x
,
y
,
this
.
_reorganizeSpeed
(
speed
));
this
.
_moveAxis
(
endEffector
,
x
,
"
x
"
,
speed
.
x
,
sketchyCallback
);
this
.
_moveAxis
(
x
,
"
x
"
,
speed
.
x
,
sketchyCallback
);
this
.
_moveAxis
(
endEffector
,
y
,
"
y
"
,
speed
.
y
,
sketchyCallback
);
this
.
_moveAxis
(
y
,
"
y
"
,
speed
.
y
,
sketchyCallback
);
this
.
_moveAxis
(
endEffector
,
z
,
"
z
"
,
speed
.
z
,
sketchyCallback
);
this
.
_moveAxis
(
z
,
"
z
"
,
speed
.
z
,
sketchyCallback
);
this
.
cell
.
updateForScale
();
//todo why is this here?
this
.
cell
.
updateForScale
();
//todo why is this here?
};
};
...
@@ -166,17 +173,14 @@ Shopbot.prototype._makeAbsPosition = function(target, wcs){
...
@@ -166,17 +173,14 @@ Shopbot.prototype._makeAbsPosition = function(target, wcs){
return
parseFloat
(
target
)
+
wcs
;
return
parseFloat
(
target
)
+
wcs
;
};
};
Shopbot
.
prototype
.
_moveAxis
=
function
(
mesh
,
target
,
axis
,
speed
,
callback
){
Shopbot
.
prototype
.
_moveAxis
=
function
(
target
,
axis
,
speed
,
callback
){
if
(
target
==
null
||
target
===
undefined
)
{
if
(
target
==
null
||
target
===
undefined
)
{
callback
();
callback
();
return
;
return
;
}
}
this
.
_animateMesh
(
mesh
,
axis
,
speed
,
target
,
callback
);
this
.
_animateObjects
(
this
.
meshes
.
concat
(
this
.
cell
),
axis
,
speed
,
target
,
callback
);
this
.
_animateMesh
(
this
.
cell
.
cellMesh
,
axis
,
speed
,
target
,
null
);
//todo reaching a little deep here, might want to find a better solution
};
};
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////ONE BIT///////////////////////////////////////////////////
/////////////////////////////////////ONE BIT///////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////
...
...
This diff is collapsed.
Click to expand it.
js/fea/DmaCell.js
+
9
−
0
View file @
66c59ee8
...
@@ -96,6 +96,15 @@ DMACell.prototype._setMeshPosition = function(mesh, position){
...
@@ -96,6 +96,15 @@ DMACell.prototype._setMeshPosition = function(mesh, position){
mesh
.
position
.
z
=
position
.
z
;
mesh
.
position
.
z
=
position
.
z
;
};
};
DMACell
.
prototype
.
moveTo
=
function
(
position
,
axis
){
//used for stock simulations
this
.
cellMesh
.
position
[
axis
]
=
position
;
//todo update parts too
};
DMACell
.
prototype
.
currentPosition
=
function
(){
//used for stock simulations
return
this
.
cellMesh
.
position
.
clone
();
};
DMACell
.
prototype
.
getType
=
function
(){
DMACell
.
prototype
.
getType
=
function
(){
return
null
;
//only used in freeform layout
return
null
;
//only used in freeform layout
};
};
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment