Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
S
sot-dyninv
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
Container Registry
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
Guilhem Saurel
sot-dyninv
Commits
e7135d12
Commit
e7135d12
authored
13 years ago
by
Nicolas Mansard
Browse files
Options
Downloads
Patches
Plain Diff
Current working version, comparing both regular solver and reduced solver.
parent
66a1570e
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
python/dynreduced.py
+126
-30
126 additions, 30 deletions
python/dynreduced.py
with
126 additions
and
30 deletions
python/dynreduced.py
+
126
−
30
View file @
e7135d12
...
@@ -25,6 +25,13 @@ def totuple( a ):
...
@@ -25,6 +25,13 @@ def totuple( a ):
# --- ROBOT SIMU ---------------------------------------------------------------
# --- ROBOT SIMU ---------------------------------------------------------------
# --- ROBOT SIMU ---------------------------------------------------------------
# --- ROBOT SIMU ---------------------------------------------------------------
initialConfig
[
'
hrp14small
'
]
=
(
0.0274106623863
,
0.143843868989
,
0.646921914726
,
0.00221064938462
,
0.101393756965
,
1.36729741242e-05
,
-
0.00911630330837
,
-
0.0914099637938
,
-
0.471978743283
,
0.840380192617
,
-
0.470232799053
,
0.0896624078591
,
0.00950781802257
,
0.0911102868041
,
-
0.469450351848
,
0.835307995386
,
-
0.467686190904
,
-
0.0938029466367
,
0.3
,
0.3
,
0
,
0
,
0.6
,
-
0.3
,
0
,
-
0.52
,
0
,
-
0.1
,
0
,
-
0.2
,
0.17
,
0
,
-
0.52
,
0
,
0.1
,
0
)
robotDim
=
robotDimension
[
robotName
]
robotDim
=
robotDimension
[
robotName
]
RobotClass
=
RobotDynSimu
RobotClass
=
RobotDynSimu
robot
=
RobotClass
(
"
robot
"
)
robot
=
RobotClass
(
"
robot
"
)
...
@@ -172,9 +179,15 @@ contactRF.support = ((0.11,-0.08,-0.08,0.11),(-0.07,-0.07,0.045,0.045),(-0.105,-
...
@@ -172,9 +179,15 @@ contactRF.support = ((0.11,-0.08,-0.08,0.11),(-0.07,-0.07,0.045,0.045),(-0.105,-
contactRF
.
feature
.
frame
(
'
desired
'
)
contactRF
.
feature
.
frame
(
'
desired
'
)
# --- SOT Dyn OpSpaceH --------------------------------------
# --- SOT Dyn OpSpaceH --------------------------------------
rs
=
True
# Regular solver
#rs=False # Reduced solver
# SOT controller.
# SOT controller.
sot
=
SolverDynRed2
(
'
sot
'
)
if
rs
:
#sot = SolverOpSpace('sot')
sot
=
SolverOpSpace
(
'
sot
'
)
else
:
sot
=
SolverDynRed2
(
'
sot
'
)
sot
.
setSize
(
robotDim
-
6
)
sot
.
setSize
(
robotDim
-
6
)
#sot.damping.value = 2e-2
#sot.damping.value = 2e-2
sot
.
breakFactor
.
value
=
10
sot
.
breakFactor
.
value
=
10
...
@@ -183,9 +196,16 @@ plug(dyn.inertiaReal,sot.matrixInertia)
...
@@ -183,9 +196,16 @@ plug(dyn.inertiaReal,sot.matrixInertia)
plug
(
dyn
.
dynamicDrift
,
sot
.
dyndrift
)
plug
(
dyn
.
dynamicDrift
,
sot
.
dyndrift
)
plug
(
dyn
.
velocity
,
sot
.
velocity
)
plug
(
dyn
.
velocity
,
sot
.
velocity
)
plug
(
sot
.
torque
,
robot
.
control
)
if
rs
:
plug
(
sot
.
control
,
robot
.
control
)
else
:
plug
(
sot
.
solution
,
robot
.
control
)
plug
(
sot
.
acceleration
,
robot
.
acceleration
)
plug
(
sot
.
acceleration
,
robot
.
acceleration
)
sot
.
addContactFromTask
(
contactLF
.
task
.
name
,
'
LF
'
)
sot
.
_LF_p
.
value
=
contactLF
.
support
sot
.
addContactFromTask
(
contactRF
.
task
.
name
,
'
RF
'
)
sot
.
_RF_p
.
value
=
contactRF
.
support
# --- TRACE ----------------------------------------------
# --- TRACE ----------------------------------------------
from
dynamic_graph.tracer
import
*
from
dynamic_graph.tracer
import
*
...
@@ -205,15 +225,31 @@ tr.add('taskCom.error','com')
...
@@ -205,15 +225,31 @@ tr.add('taskCom.error','com')
tr
.
add
(
'
taskCom.task
'
,
''
)
tr
.
add
(
'
taskCom.task
'
,
''
)
tr
.
add
(
contactLF
.
task
.
name
+
'
.error
'
,
'
lf
'
)
tr
.
add
(
contactLF
.
task
.
name
+
'
.error
'
,
'
lf
'
)
if
not
rs
:
tr
.
add
(
'
sot.solution
'
,
''
)
if
rs
:
tr
.
add
(
'
sot._LF_f
'
,
'
fl
'
)
tr
.
add
(
'
sot._RF_f
'
,
'
fr
'
)
tr
.
add
(
'
sot._LF_fn
'
,
'
fnl
'
)
tr
.
add
(
'
sot._RF_fn
'
,
'
fnr
'
)
else
:
tr
.
add
(
'
sot.forces
'
,
''
)
robot
.
after
.
addSignal
(
'
sot.forces
'
)
if
not
rs
:
tr
.
add
(
'
sot.forcesNormal
'
,
''
)
robot
.
after
.
addSignal
(
'
sot.forcesNormal
'
)
tr
.
add
(
'
sot.activeForces
'
,
''
)
robot
.
after
.
addSignal
(
'
sot.activeForces
'
)
# --- RUN ------------------------------------------------
# --- RUN ------------------------------------------------
sot
.
addContactFromTask
(
contactLF
.
task
.
name
,
'
LF
'
)
sot
.
_LF_p
.
value
=
contactLF
.
support
sot
.
addContactFromTask
(
contactRF
.
task
.
name
,
'
RF
'
)
sot
.
_RF_p
.
value
=
contactRF
.
support
taskCom
.
controlGain
.
value
=
100
taskCom
.
controlGain
.
value
=
100
#featureComDes.errorIN.value = (0.06, 0.15, 0.8)
#featureComDes.errorIN.value = (0.06, 0.15, 0.8)
featureComDes
.
errorIN
.
value
=
(
0.06
,
0.145
,
0.8
)
#featureComDes.errorIN.value = (0.06, 0.145, 0.8 )
featureComDes
.
errorIN
.
value
=
(
0.1
,
0.145
,
0.8
)
#Nominal: no zmp overshoot featureComDes.errorIN.value = (0.084, 0.144, 0.804 )
sot
.
push
(
'
taskCom
'
)
sot
.
push
(
'
taskCom
'
)
#@attime(5)
#@attime(5)
...
@@ -222,34 +258,94 @@ def rm():
...
@@ -222,34 +258,94 @@ def rm():
attime
(
500
,
stop
,
'
stop
'
)
attime
(
500
,
stop
,
'
stop
'
)
plug
(
robot
.
state
,
sot
.
position
)
#plug(robot.state,sot.position)
sot
.
posture
.
value
=
(
0
,
0
,
0
,
0
,
0
,
0
,
-
0.009116303
,
-
0.091409964
,
-
0.471978743
,
0.840380193
,
-
0.470232799
,
0.089662408
,
0.009507818
,
0.091110287
,
-
0.469450352
,
0.835307995
,
-
0.467686191
,
-
0.093802947
,
-
0.000087565
,
0.003264319
,
-
0.000007834
,
0.000194743
,
0.258370257
,
-
0.175099102
,
-
0.000061173
,
-
0.524953549
,
0.000003183
,
-
0.000257600
,
-
0.000003412
,
0.258367272
,
0.174322098
,
-
0.000088902
,
-
0.524983691
,
-
0.000000346
,
-
0.000265401
,
0.3
)
#sot.posture.value = ( 0,0,0,0,0,0, -0.009116303, -0.091409964, -0.471978743, 0.840380193, -0.470232799, 0.089662408, 0.009507818, 0.091110287, -0.469450352, 0.835307995, -0.467686191, -0.093802947, -0.000087565, 0.003264319, -0.000007834, 0.000194743, 0.258370257, -0.175099102, -0.000061173, -0.524953549, 0.000003183, -0.000257600, -0.000003412, 0.258367272, 0.174322098, -0.000088902, -0.524983691, -0.000000346, -0.000265401, 0.3 )
class
Chrono
:
t0
=
0
def
__init__
(
self
):
self
.
t0
=
time
.
time
()
def
tic
(
self
):
print
'
elapsed time =
'
,
time
.
time
()
-
self
.
t0
chrono
=
Chrono
()
attime
(
499
,
chrono
.
tic
)
go
()
matlab
.
prec
=
9
matlab
.
prec
=
9
matlab
.
fullPrec
=
0
matlab
.
fullPrec
=
0
'''
for i in range(25): inc()
for
i
in
range
(
100
):
inc
()
print sot.velocity.m
print sot.velocity.m
print sot.dyndrift.m
print sot.dyndrift.m
print
sot
.
forceGenerator
.
m
print sot.matrixInertia.m
print
sot
.
Jc
.
m
print
sot
.
freeMotionBase
.
m
print
sot
.
freeForceBase
.
m
print
sot
.
inertiaSqroot
.
m
print
sot
.
inertiaSqrootInv
.
m
print
sot
.
driftContact
.
m
print
taskCom
.
jacobian
.
m
print
taskCom
.
task
.
m
print
taskCom
.
Jdot
.
m
print
"
dq=velocity; X=forceGenerator; V=freeMotionBase; K = freeForceBase; B=inertiaSqrootInv; Bi=inertiaSqroot; Jcom=jacobian; b=dyndrift; A=Bi
'
*Bi; dc = driftContact; J=X*Jc; G=J*B; Gc=Jc*B;
"
print
sot
.
solution
.
m
print sot.acceleration.m
print sot.acceleration.m
sot
.
forces
.
recompute
(
sot
.
acceleration
.
time
)
print
"
dq=velocity; b=dyndrift; A=matrixInertia; ddq=acceleration;
"
print
sot
.
forces
.
m
print
"
x=solution; ddq=acceleration; f=forces; phi = X
'
*f;
"
if rs:
print
"
u=x(1:24); psi=x(25:end);
"
print sot.control.m
print sot._LF_f.m
print sot._LF_fn.m
print sot._RF_f.m
print sot._RF_fn.m
print
"
ddq1=ddq; phil1= _LF_f; phir1 = _RF_f; phi1=[ phil1; phir1 ]; fnl1=_LF_fn; fnr1 = _RF_fn; fn1 = [fnl1; fnr1 ]; tau1=control;
"
else:
print sot.sizeForceSpatial.m
print sot.velocity.m
print sot.dyndrift.m
print sot.forceGenerator.m
print sot.Jc.m
print sot.freeMotionBase.m
print sot.freeForceBase.m
print sot.inertiaSqroot.m
print sot.inertiaSqrootInv.m
print sot.driftContact.m
print taskCom.jacobian.m
print taskCom.task.m
print taskCom.Jdot.m
print
"
X=forceGenerator; V=freeMotionBase; K = freeForceBase; B=inertiaSqrootInv; Bi=inertiaSqroot; Jcom=jacobian; Ab=Bi
'
*Bi; dc = driftContact; J=X*Jc; G=J*B; Gc=Jc*B; Sb=[eye(6) zeros(6,30)];
"
print sot.solution.m
print sot.acceleration.m
sot.forces.recompute(sot.acceleration.time)
print sot.forces.m
print
"
x=solution; ddq=acceleration; f=forces; phi = X
'
*f;
"
print
"
u=x(1:24); psi=x(25:end);
"
print
"
ddq2= ddq; phi2=phi; f2=f; fn2=f(3:3:end);
"
'''
if
0
:
# double check
sotreg
=
SolverOpSpace
(
'
sotreg
'
)
sotreg
.
setSize
(
robotDim
-
6
)
sotreg
.
breakFactor
.
value
=
10
plug
(
dyn
.
inertiaReal
,
sotreg
.
matrixInertia
)
plug
(
dyn
.
dynamicDrift
,
sotreg
.
dyndrift
)
plug
(
dyn
.
velocity
,
sotreg
.
velocity
)
sotreg
.
addContactFromTask
(
contactLF
.
task
.
name
,
'
LF
'
)
sotreg
.
_LF_p
.
value
=
contactLF
.
support
sotreg
.
addContactFromTask
(
contactRF
.
task
.
name
,
'
RF
'
)
sotreg
.
_RF_p
.
value
=
contactRF
.
support
sotreg
.
push
(
'
taskCom
'
)
sotreg
.
control
.
recompute
(
sot
.
acceleration
.
time
)
print
sotreg
.
control
.
m
print
sotreg
.
_LF_f
.
m
print
sotreg
.
_LF_fn
.
m
print
sotreg
.
_RF_f
.
m
print
sotreg
.
_RF_fn
.
m
print
sotreg
.
acceleration
.
m
print
"
ddq1=acceleration; phil1= _LF_f; phir1 = _RF_f; phi1=[ phil1; phir1 ]; fnl1=_LF_fn; fnr1 = _RF_fn; fn1 = [fnl1; fnr1 ]; tau1=control;
"
print
taskCom
.
task
.
m
#sot.solution.recompute(1)
#sot.acceleration.recompute(1)
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