Go to the documentation of this file.00001 import roslib
00002 roslib.load_manifest("phantom_omni")
00003 import rospy
00004 import tf
00005 import tf.transformations as tr
00006
00007 from geometry_msgs.msg import PoseStamped
00008 from geometry_msgs.msg import Pose
00009 from geometry_msgs.msg import Wrench
00010
00011 import math
00012 import numpy as np
00013
00014 def tf2mat(tf_trans):
00015 (trans, rot) = tf_trans
00016 return np.matrix(tr.translation_matrix(trans)) * np.matrix(tr.quaternion_matrix(rot))
00017
00018 def mat2pose(m):
00019 trans = tr.translation_from_matrix(m)
00020 rot = tr.quaternion_from_matrix(m)
00021 p = Pose()
00022 p.position.x = trans[0]
00023 p.position.y = trans[1]
00024 p.position.z = trans[2]
00025 p.orientation.x = rot[0]
00026 p.orientation.y = rot[1]
00027 p.orientation.z = rot[2]
00028 p.orientation.w = rot[3]
00029 return p
00030
00031 rospy.init_node("omni_potential_well")
00032 wpub = rospy.Publisher('force_feedback', Wrench)
00033 r = rospy.Rate(1000)
00034
00035
00036
00037
00038 print 'running.'
00039
00040 well_center = None
00041 angle = 0.;
00042 while not rospy.is_shutdown():
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055 wr = Wrench()
00056 angle = np.radians(.3) + angle
00057 wr.force.x = 0
00058 wr.force.y = 0
00059 wr.force.z = np.sin(angle) * 3
00060 print wr.force.z
00061 wpub.publish(wr)
00062 r.sleep()
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
00117
00118
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166
00167
00168
00169
phantom_omni
Author(s): Hai Nguyen, Marc Killpack, Chi-Hung King, Advisor: Prof. Charlie Kemp, Lab: Healthcare Robotics Lab at Georgia Tech
autogenerated on Wed Nov 27 2013 11:51:14