-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8a8bbb8
commit 5eab196
Showing
5 changed files
with
637 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,225 @@ | ||
# %% | ||
import numpy as np | ||
import pychrono as chrono | ||
|
||
from rostok.block_builder_api.block_blueprints import (PrimitiveBodyBlueprint, | ||
RevolveJointBlueprint, | ||
TransformBlueprint) | ||
from rostok.block_builder_api.block_parameters import JointInputType | ||
from rostok.block_builder_api.easy_body_shapes import Box, Cylinder, Ellipsoid | ||
from rostok.block_builder_chrono.blocks_utils import FrameTransform | ||
from rostok.graph_grammar import rule_vocabulary | ||
from rostok.graph_grammar.node import ROOT | ||
from rostok.graph_grammar.node_vocabulary import NodeVocabulary | ||
from rostok.utils.dataset_materials.material_dataclass_manipulating import ( | ||
DefaultChronoMaterialNSC, DefaultChronoMaterialSMC) | ||
from rostok.graph_grammar.node import GraphGrammar | ||
from rostok.graph_grammar.graph_utils import plot_graph | ||
|
||
# %% | ||
def get_density_box(mass: float, box: Box): | ||
volume = box.height_z * box.length_y * box.width_x | ||
return mass / volume | ||
|
||
def rotation_x(alpha): | ||
quat_X_ang_alpha = chrono.Q_from_AngX(np.deg2rad(alpha)) | ||
return [quat_X_ang_alpha.e0, quat_X_ang_alpha.e1, quat_X_ang_alpha.e2, quat_X_ang_alpha.e3] | ||
|
||
def rotation_y(alpha): | ||
quat_Y_ang_alpha = chrono.Q_from_AngY(np.deg2rad(alpha)) | ||
return [quat_Y_ang_alpha.e0, quat_Y_ang_alpha.e1, quat_Y_ang_alpha.e2, quat_Y_ang_alpha.e3] | ||
|
||
def rotation_z(alpha): | ||
quat_Z_ang_alpha = chrono.Q_from_AngZ(np.deg2rad(alpha)) | ||
return [quat_Z_ang_alpha.e0, quat_Z_ang_alpha.e1, quat_Z_ang_alpha.e2, quat_Z_ang_alpha.e3] | ||
|
||
def create_rules(): | ||
def_mat = DefaultChronoMaterialNSC() | ||
|
||
# %% | ||
node_vocab = NodeVocabulary() | ||
node_vocab.add_node(ROOT) | ||
node_vocab.create_node(label="MB") | ||
node_vocab.create_node(label="L") | ||
node_vocab.create_node(label="W") | ||
node_vocab.create_node(label="J") | ||
node_vocab.create_node(label="R") | ||
node_vocab.create_node(label="G") | ||
|
||
node_vocab.create_node(label="XT") | ||
node_vocab.create_node(label="ZT") | ||
|
||
|
||
# %% | ||
# blueprint for the palm | ||
main_body = [] | ||
for i in range(10): | ||
main_body.append(PrimitiveBodyBlueprint( | ||
Box(0.5, 0.1, 0.3), material=def_mat, color=[255, 0, 0], density=100+i*100)) | ||
|
||
wheel_body_cyl = PrimitiveBodyBlueprint( | ||
Cylinder(0.03, 0.02), material=def_mat, color=[0, 120, 255], density=500) | ||
|
||
wheel_body_ell = PrimitiveBodyBlueprint( | ||
Ellipsoid(0.06,0.06, 0.04), material=def_mat, color=[0, 120, 255], density=500) | ||
|
||
# blueprint for the base | ||
base = PrimitiveBodyBlueprint(Box(0.02, 0.03, 0.02), | ||
material=def_mat, | ||
color=[120, 120, 0], | ||
density=500) | ||
|
||
# sets effective density for the links, the real links are considered to be extendable. | ||
|
||
length_link = np.linspace(0.05, 0.1, 5) | ||
# create link blueprints using mass and length parameters | ||
link = list(map(lambda x: PrimitiveBodyBlueprint(Box(0.02, x, 0.02), | ||
material=def_mat, | ||
color=[0, 120, 255], | ||
density=500), length_link)) | ||
|
||
# %% | ||
for i, bp in enumerate(main_body): | ||
node_vocab.create_node(label=f"MB{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
for i, bp in enumerate(link): | ||
node_vocab.create_node(label=f"L{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
node_vocab.create_node(label="B", is_terminal=True,block_blueprint=base) | ||
node_vocab.create_node(label="WC", is_terminal=True,block_blueprint=wheel_body_cyl) | ||
node_vocab.create_node(label="WE", is_terminal=True,block_blueprint=wheel_body_ell) | ||
|
||
# %% | ||
x_translation_values = np.linspace(0.0,0.25,5) | ||
X_TRANSLATIONS_POSITIVE = list( | ||
map(lambda x: FrameTransform([x, 0, 0], [1, 0, 0, 0]), x_translation_values)) | ||
X_TRANSLATIONS_NEGATIVE=list( | ||
map(lambda x: FrameTransform([-x, 0, 0], [1, 0, 0, 0]), x_translation_values)) | ||
# create transform blueprints from the values | ||
x_translation_positive = list( | ||
map(lambda x: TransformBlueprint(x), X_TRANSLATIONS_POSITIVE)) | ||
x_translation_negative = list( | ||
map(lambda x: TransformBlueprint(x), X_TRANSLATIONS_NEGATIVE)) | ||
|
||
z_translation_values = np.linspace(0.0,0.15,5) | ||
Z_TRANSLATIONS_POSITIVE = list( | ||
map(lambda x: FrameTransform([0, 0, x], [1, 0, 0, 0]), z_translation_values)) | ||
Z_TRANSLATIONS_NEGATIVE = list( | ||
map(lambda x: FrameTransform([0, 0, -x], [1, 0, 0, 0]), z_translation_values)) | ||
|
||
z_translation_positive = list( | ||
map(lambda x: TransformBlueprint(x), Z_TRANSLATIONS_POSITIVE)) | ||
z_translation_negative = list( | ||
map(lambda x: TransformBlueprint(x), Z_TRANSLATIONS_NEGATIVE)) | ||
|
||
# %% | ||
for i, bp in enumerate(x_translation_positive): | ||
node_vocab.create_node(label=f"XTP{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
for i, bp in enumerate(x_translation_negative): | ||
node_vocab.create_node(label=f"XTN{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
for i, bp in enumerate(z_translation_positive): | ||
node_vocab.create_node(label=f"ZTP{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
for i, bp in enumerate(z_translation_negative): | ||
node_vocab.create_node(label=f"ZTN{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
# %% | ||
TURN_X = FrameTransform([0, 0, 0], rotation_x(90)) | ||
turn_x_bp = TransformBlueprint(TURN_X) | ||
|
||
TURN_Y = FrameTransform([0, 0, 0], rotation_y(90)) | ||
turn_y_bp = TransformBlueprint(TURN_Y) | ||
|
||
TURN_Z = FrameTransform([0, 0, 0], rotation_z(90)) | ||
turn_z_bp = TransformBlueprint(TURN_Z) | ||
|
||
# %% | ||
node_vocab.create_node(label='XR',is_terminal=True, block_blueprint=turn_x_bp) | ||
node_vocab.create_node(label='YR',is_terminal=True, block_blueprint=turn_y_bp) | ||
node_vocab.create_node(label='ZR',is_terminal=True, block_blueprint=turn_z_bp) | ||
|
||
# %% | ||
stiffness = np.linspace(0.1,1,10) | ||
|
||
no_control_joint = list( | ||
map(lambda x: RevolveJointBlueprint(JointInputType.UNCONTROL, | ||
stiffness=x, | ||
damping=0.02, | ||
equilibrium_position=0), stiffness)) | ||
motor_bp = RevolveJointBlueprint(JointInputType.TORQUE, stiffness=0, damping=0.001) | ||
neutral_bp = RevolveJointBlueprint(JointInputType.UNCONTROL, stiffness=0, damping=0.001) | ||
|
||
# %% | ||
node_vocab.create_node(label="RM", is_terminal=True, block_blueprint=motor_bp) | ||
node_vocab.create_node(label="LM", is_terminal=True, block_blueprint=motor_bp) | ||
node_vocab.create_node(label="NM", is_terminal=True, block_blueprint=neutral_bp) | ||
|
||
for i, bp in enumerate(no_control_joint): | ||
node_vocab.create_node(label=f"J{i}", is_terminal=True, block_blueprint=bp) | ||
|
||
# %% | ||
rule_vocab = rule_vocabulary.RuleVocabulary(node_vocab) | ||
# structural rules | ||
rule_vocab.create_rule("Init", ["ROOT"], ["MB"], 0, 0,[]) | ||
rule_vocab.create_rule("Add_Leg_Base",["MB"],["MB","XT","ZT","B","G"],0,0,[(0,1),(1,2),(2,3),(3,4)]) | ||
|
||
rule_vocab.create_rule("Extension",["G"],["J","L", "G"], 0,2,[(0, 1), (1, 2)]) | ||
rule_vocab.create_rule("R_Wheel",["G"], ["RM","W"],0,0,[(0,1)]) | ||
rule_vocab.create_rule("L_Wheel",["G"], ["LM","W"],0,0,[(0,1)]) | ||
rule_vocab.create_rule("Wheel",["G"], ["NM","W"],0,0,[(0,1)]) | ||
rule_vocab.create_rule("Rotation",["G"],["R","G"],0,0,[(0,1)]) | ||
|
||
# %% | ||
for i in range(len(main_body)): | ||
rule_vocab.create_rule(f'Terminal_Main_Body{i}',["MB"],[f"MB{i}"],0,0,[]) | ||
|
||
for i in range(len(link)): | ||
rule_vocab.create_rule(f'Terminal_Link{i}',["L"],[f"L{i}"],0,0,[]) | ||
|
||
for i in range(len(no_control_joint)): | ||
rule_vocab.create_rule(f'Terminal_Joint{i}',["J"],[f"J{i}"],0,0,[]) | ||
|
||
for i in range(len(x_translation_positive)): | ||
rule_vocab.create_rule(f'Positive_Translation_X{i}',["XT"],[f"XTP{i}"],0,0,[]) | ||
for i in range(len(x_translation_negative)): | ||
rule_vocab.create_rule(f'Negative_Translation_X{i}',["XT"],[f"XTN{i}"],0,0,[]) | ||
for i in range(len(z_translation_positive)): | ||
rule_vocab.create_rule(f'Positive_Translation_Z{i}',["ZT"],[f"ZTP{i}"],0,0,[]) | ||
for i in range(len(z_translation_negative)): | ||
rule_vocab.create_rule(f'Negative_Translation_Z{i}',["ZT"],[f"ZTN{i}"],0,0,[]) | ||
|
||
rule_vocab.create_rule(f'Rotation_X',["R"],["XR"],0,0,[]) | ||
rule_vocab.create_rule(f'Rotation_Y',["R"],["YR"],0,0,[]) | ||
rule_vocab.create_rule(f'Rotation_Z',["R"],["ZR"],0,0,[]) | ||
|
||
rule_vocab.create_rule("Cyl_Wheel",["W"],["WC"],0,0,[]) | ||
rule_vocab.create_rule("Ell_Wheel",["W"],["WE"],0,0,[]) | ||
|
||
return rule_vocab | ||
|
||
# %% | ||
def get_wheels(): | ||
i=5 | ||
graph = GraphGrammar() | ||
rules = ["Init", | ||
"Add_Leg_Base","Positive_Translation_X4","Positive_Translation_Z3","Rotation", | ||
'Rotation_Y', "Extension","Extension","Rotation","R_Wheel", "Cyl_Wheel", | ||
"Terminal_Link3","Terminal_Link3",f'Terminal_Joint{i}',f'Terminal_Joint{i}', 'Rotation_Y', | ||
|
||
"Add_Leg_Base","Positive_Translation_X4","Negative_Translation_Z3","Rotation", | ||
'Rotation_Y', "Extension","Extension","Rotation","L_Wheel", "Cyl_Wheel", | ||
"Terminal_Link3","Terminal_Link3",f'Terminal_Joint{i}',f'Terminal_Joint{i}', 'Rotation_Y', | ||
|
||
"Add_Leg_Base","Negative_Translation_X4","Negative_Translation_Z0", "Extension","Extension", | ||
"Terminal_Link3","Terminal_Link3",f'Terminal_Joint{i}',f'Terminal_Joint{i}', "Wheel", "Ell_Wheel", | ||
'Terminal_Main_Body3' | ||
|
||
] | ||
|
||
rule_vocabul = create_rules() | ||
for rule in rules: | ||
graph.apply_rule(rule_vocabul.get_rule(rule)) | ||
|
||
return graph |
Oops, something went wrong.