Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
itmo-sai-code
rostok
Commits
e0197469
Commit
e0197469
authored
1 year ago
by
Mikhail Chaikovskii
Browse files
Options
Download
Email Patches
Plain Diff
tests
parent
f92eb3c2
sensor_tests
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app/rule_extention.py
+4
-6
app/rule_extention.py
examples/example_simstep.py
+3
-2
examples/example_simstep.py
rostok/virtual_experiment/sensors.py
+3
-0
rostok/virtual_experiment/sensors.py
with
10 additions
and
8 deletions
+10
-8
app/rule_extention.py
View file @
e0197469
...
...
@@ -3,14 +3,12 @@ import networkx as nx
import
numpy
as
np
import
pychrono
as
chrono
import
numpy
as
np
from
rostok.block_builder_api.block_blueprints
import
TransformBlueprint
,
PrimitiveBodyBlueprint
,
\
EnvironmentBodyBlueprint
,
RevolveJointBlueprint
from
rostok.block_builder_api.block_blueprints
import
(
EnvironmentBodyBlueprint
,
PrimitiveBodyBlueprint
,
RevolveJointBlueprint
,
TransformBlueprint
)
from
rostok.block_builder_api.block_parameters
import
JointInputType
from
rostok.block_builder_api.easy_body_shapes
import
Box
from
rostok.block_builder_chrono.blocks_utils
import
FrameTransform
from
rostok.block_builder_api.block_parameters
import
JointInputType
from
rostok.graph_grammar
import
node_vocabulary
,
rule_vocabulary
from
rostok.graph_grammar.node
import
ROOT
...
...
This diff is collapsed.
Click to expand it.
examples/example_simstep.py
View file @
e0197469
...
...
@@ -19,7 +19,7 @@ mechs = [
mechs
=
[
get_terminal_graph_no_joints
]
for
get_graph
in
mechs
:
# Constants
MAX_TIME
=
0.5
MAX_TIME
=
1000
TIME_STEP
=
1e-3
graph
=
get_graph
()
...
...
@@ -46,7 +46,8 @@ for get_graph in mechs:
FrameTransform
([
0
,
0.1
,
0
],
[
1
,
0
,
0
,
0
]))
sim
.
set_flags_stop_simulation
(
flags
)
sim
.
change_config_system
(
config_sys
)
#body: chrono.ChBody = sim.grasp_object.body
#body.SetPos_dt(chrono.ChVectorD(-1,0,0))
# Start simulation
sim_output
=
sim
.
simulate_system
(
TIME_STEP
,
True
)
This diff is collapsed.
Click to expand it.
rostok/virtual_experiment/sensors.py
View file @
e0197469
...
...
@@ -48,6 +48,9 @@ class ContactReporter(chrono.ReportContactCallback):
body_b
=
chrono
.
CastToChBody
(
contactobjB
)
idx_a
=
None
idx_b
=
None
#print(plane_coord)
if
react_forces
.
x
>
0
or
react_forces
.
y
>
0
or
react_forces
.
z
>
0
:
print
(
react_forces
.
x
,
react_forces
.
z
,
react_forces
.
y
)
for
body_tuple
in
self
.
_body_list
:
if
body_a
==
body_tuple
[
1
].
body
:
idx_a
=
body_tuple
[
0
]
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help