-
Notifications
You must be signed in to change notification settings - Fork 36
/
Siemens_Sinumerik_Inch.py
521 lines (453 loc) · 22.5 KB
/
Siemens_Sinumerik_Inch.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
# Copyright 2017 - RoboDK Software S.L. - http://www.robodk.com/
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ----------------------------------------------------
# This file is a sample POST PROCESSOR script to generate robot programs for a
# Siemens controller (Siemens Sinumerik programming language)
#
# To edit/test this POST PROCESSOR script file:
# Select "Program"->"Add/Edit Post Processor", then select your post or create a new one.
# You can edit this file using any text editor or Python editor. Using a Python editor allows to quickly evaluate a sample program at the end of this file.
# Python should be automatically installed with RoboDK
#
# You can also edit the POST PROCESSOR manually:
# 1- Open the *.py file with Python IDLE (right click -> Edit with IDLE)
# 2- Make the necessary changes
# 3- Run the file to open Python Shell: Run -> Run module (F5 by default)
# 4- The "test_post()" function is called automatically
# Alternatively, you can edit this file using a text editor and run it with Python
#
# To use a POST PROCESSOR file you must place the *.py file in "C:/RoboDK/Posts/"
# To select one POST PROCESSOR for your robot in RoboDK you must follow these steps:
# 1- Open the robot panel (double click a robot)
# 2- Select "Parameters"
# 3- Select "Unlock advanced options"
# 4- Select your post as the file name in the "Robot brand" box
#
# To delete an existing POST PROCESSOR script, simply delete this file (.py file)
#
# ----------------------------------------------------
# More information about RoboDK Post Processors and Offline Programming here:
# http://www.robodk.com/help#PostProcessor
# http://www.robodk.com/doc/en/PythonAPI/postprocessor.html
# ----------------------------------------------------
# Customize the following parameters:
M_WAIT_DI = 'M66' # Provide the M code to wait for a digital input
M_SET_DO_HIGH = 'M62' # Provide the M code to set a digital output HIGH (1 or True)
M_SET_DO_LOW = 'M62' # Provide the M code to set a digital output LOW (0 or False)
#MM_2_UNITS = 1.0 # Use Millimeter units
MM_2_UNITS = 1.0/25.4 # Use Inch units
# ----------------------------------------------------
# Import RoboDK tools
from robodk import *
def conf_2_STAT(confRLF):
if confRLF is None:
return 2 #"'B010'"
config = 0
if confRLF[2] > 0:
config = config + 4
if confRLF[1] == 0:
config = config + 2
if confRLF[0] > 0:
config = config + 1
return config
def joints_2_TU(joints):
if joints is None:
return 0 # "'B000000'"
turn = 0
njoints = len(joints)
for i in range(njoints):
if joints[i] < 0:
turn = turn + 2**(njoints-1-i)
return turn
# ----------------------------------------------------
# Object class that handles the robot instructions/syntax
class RobotPost(object):
"""Robot post object"""
PROG_EXT = 'mpf' # set the program extension
# other variables
ROBOT_POST = ''
ROBOT_NAME = ''
PROG_FILES = []
PROG = ''
PROG_COUNT = 0
LOG = ''
nAxes = 6
nId = 0
REF_FRAME = eye(4)
INV_TOOL_FRAME = eye(4) # Force TC_DCP to 0 by post multiplying poses
SPEED_UNITS_MIN = 5000 * MM_2_UNITS
SPEED_DEG_MIN = 2000
Nline = 0
LAST_X = None
LAST_Y = None
LAST_Z = None
LAST_POSE = None
TRAORI = None
# ----------------------------------------------------
def pose_2_str(self, pose, remember_last=False):
"""Prints a pose target"""
[x,y,z,a,b,c] = Pose_2_Staubli(pose)
x = x * MM_2_UNITS
y = y * MM_2_UNITS
z = z * MM_2_UNITS
if remember_last:
G_LINE = ''
if self.LAST_X != x:
G_LINE += 'X%.3f ' % x
if self.LAST_Y != y:
G_LINE += 'Y%.3f ' % y
if self.LAST_Z != z or len(G_LINE) == 0:
G_LINE += 'Z%.3f ' % z
G_LINE += 'A=%.3f ' % a
G_LINE += 'B=%.3f ' % b
G_LINE += 'C=%.3f ' % c
self.LAST_X = x
self.LAST_Y = y
self.LAST_Z = z
G_LINE = G_LINE[:-1]
return G_LINE
else:
return ('X%.3f Y%.3f Z%.3f A%.3f B%.3f C%.3f' % (x,y,z,a,b,c))
def joints_2_str(self, joints):
"""Prints a joint target"""
str = ''
data = ['JT1','JT2','JT3','A','B','C','G','H','I','J','K','L']
for i in range(len(joints)):
str = str + ('%s=%.6f ' % (data[i], joints[i]))
str = str[:-1]
return str
def __init__(self, robotpost=None, robotname=None, robot_axes = 6, **kwargs):
self.ROBOT_POST = robotpost
self.ROBOT_NAME = robotname
self.PROG = ''
self.LOG = ''
self.nAxes = robot_axes
def ProgStart(self, progname):
self.PROG_COUNT = self.PROG_COUNT + 1
if self.PROG_COUNT <= 1:
import datetime
self.addcomment('File: %s' % progname)
self.addcomment('Created on %s' % datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S"))
self.addcomment('Program created using RoboDK')
if MM_2_UNITS == 1.0:
self.addline('G17 G710 G40 ; XY plane selection, metric, no tool radius compensation')
elif MM_2_UNITS == 1.0/25.4:
self.addline('G17 G700 G40 ; XY plane selection, inch')
else:
raise Exception("Unknown units!! Define MM_2_UNITS properly.")
self.addline('TRAORI')
self.TRAORI = True
self.addline('M32')
self.addline('G54')
self.addline('G90') # Absolute coordinates G91 (relative)
self.addline('G64')
#self.addline('; $P_UIFR[1]=CTRANS(X,0,Y,0,Z,0):CROT(X,0,Y,0,Z,0) ; Clear reference frame')
#self.addline('G54')
self.addline('ORIWKS') # Use custom work coordinate system and how they are interpreted
self.addline('ORIVIRT1')
#self.addline('; CYCLE832(0.001,_ORI_FINISH,0.01) ; contour smoothing (requires appropriate license)')
#self.addline('PTPG0') # Do not output. If we used G0 it would not work.
self.addline('STOPRE ; stop preprocessing')
self.addline('; R6=1.181')
self.addline('; R19=0.00')
self.addline('; R20=83.00')
#self.addcomment('R19 = Part Area in SqFt')
#self.addcomment('R20 = Variable to set the F speed')
self.addline('STOPRE')
#self.addcomment('T1 BLADE1')
#self.addcomment('T1 D1 ; should be called after setting the TCP')
self.addline('; M3 S7458 ; Generic way to turn on the spindle') # Generic way to turn on the spindle
self.addline('S1700.0 M80 ; Customized Spindle speed and power on')
self.addcomment('---- Program start ----')
else:
self.addcomment('')
self.addcomment('---------- Subprogram: %s ----------' % progname)
#self.addline('PROC %s' % progname)
self.addline('%s:' % progname)
self.addline('TRAORI')
self.TRAORI = True
def ProgFinish(self, progname):
if self.PROG_COUNT <= 1:
self.addcomment('End of main program ' + progname)
self.addline('M30')
self.addcomment('---------------------------')
self.addcomment('')
else:
#self.addline('RET("%s_done")' % progname) # needs to be in a file as SPF
#self.addline('M17 ; end of subprogram %s' % progname) # needs to be in a file as SPF
self.addline('GOTOB ' + progname + "_done")
self.addcomment('------------------------------------')
self.addcomment('')
def ProgSave(self, folder, progname, ask_user=False, show_result=False):
progname = progname + '.' + self.PROG_EXT
if ask_user or not DirExists(folder):
filesave = getSaveFile(folder, progname, 'Save program as...')
if filesave is not None:
filesave = filesave.name
else:
return
else:
filesave = folder + '/' + progname
fid = open(filesave, "w")
fid.write(self.PROG)
fid.close()
print('SAVED: %s\n' % filesave)
#---------------------- show result
if show_result:
if type(show_result) is str:
# Open file with provided application
import subprocess
p = subprocess.Popen([show_result, filesave])
elif type(show_result) is list:
import subprocess
p = subprocess.Popen(show_result + [filesave])
else:
# open file with default application
import os
os.startfile(filesave)
if len(self.LOG) > 0:
mbox('Program generation LOG:\n\n' + self.LOG)
def ProgSendRobot(self, robot_ip, remote_path, ftp_user, ftp_pass):
"""Send a program to the robot using the provided parameters. This method is executed right after ProgSave if we selected the option "Send Program to Robot".
The connection parameters must be provided in the robot connection menu of RoboDK"""
UploadFTP(self.PROG_FILES, robot_ip, remote_path, ftp_user, ftp_pass)
def set_cartesian_space(self):
if not self.TRAORI:
self.TRAORI = True
self.addline('TRAORI')
self.addline('G54')
def set_joint_space(self):
if self.TRAORI:
self.TRAORI = False
self.addline('TRAFOOF')
def MoveJ(self, pose, joints, conf_RLF=None):
"""Add a joint movement"""
self.set_joint_space()
self.addline('G1 ' + self.joints_2_str(joints) + ' F%.1f' % self.SPEED_DEG_MIN)
#self.addline('G0 ' + self.joints_2_str(joints)) # G0 is the fastest
if pose is not None:
self.addline('; TRAORI')
self.addline('; PTP G1 ' + self.pose_2_str(self.REF_FRAME * pose * self.INV_TOOL_FRAME, True) + ' STAT=%i TU=%i F%.1f ; same joint coordinate' % (conf_2_STAT(conf_RLF), joints_2_TU(joints), self.SPEED_UNITS_MIN))
self.addline('; TRAFOOF')
self.LAST_POSE = None
def MoveL(self, pose, joints, conf_RLF=None):
"""Add a linear movement"""
if pose is None:
self.set_joint_space()
self.addline('G1 ' + self.joints_2_str(joints) + ' F%.1f' % self.SPEED_UNITS_MIN)
else:
self.set_cartesian_space()
self.addline('G1 ' + self.pose_2_str(self.REF_FRAME * pose * self.INV_TOOL_FRAME, True) + ' F%.1f' % self.SPEED_UNITS_MIN)
#self.addline('PTP G1 ' + self.pose_2_str(self.REF_FRAME * pose * self.INV_TOOL_FRAME, True) + ' STAT=%i TU=%i F%.1f' % (conf_2_STAT(conf_RLF), joints_2_TU(joints), self.SPEED_UNITS_MIN))
# Note: it is important to have
return
if self.LAST_POSE is None:
self.addline('G1 ' + self.pose_2_str(self.REF_FRAME * pose * self.INV_TOOL_FRAME, True) + ' F%.1f' % self.SPEED_UNITS_MIN)
else:
pose_shift = invH(self.LAST_POSE)*pose
angle = pose_angle(pose_shift)*180/pi
x,y,z,w,p,r = Pose_2_UR(pose_shift)
x = x * MM_2_UNITS
y = y * MM_2_UNITS
z = z * MM_2_UNITS
steps = int(angle/(1))
steps = float(max(1,steps))
self.addline('; next move %.1f deg divided in %i steps' % (angle, steps))
xd = x/steps
yd = y/steps
zd = z/steps
wd = w/steps
pd = p/steps
rd = r/steps
for i in range(int(steps)):
factor = i+1
hi = UR_2_Pose([xd*factor,yd*factor,zd*factor,wd*factor,pd*factor,rd*factor])
self.addline('G1 ' + self.pose_2_str(self.REF_FRAME*self.LAST_POSE*hi*self.INV_TOOL_FRAME, True) + ' F%.1f' % self.SPEED_UNITS_MIN)
self.LAST_POSE = pose
def MoveC(self, pose1, joints1, pose2, joints2, conf_RLF_1=None, conf_RLF_2=None):
"""Add a circular movement"""
self.nId = self.nId + 1
xyz1 = (self.REF_FRAME*pose1*self.INV_TOOL_FRAME).Pos()
xyz2 = (self.REF_FRAME*pose2*self.INV_TOOL_FRAME).Pos()
#xyz1 = (pose1).Pos()
#xyz2 = (pose2).Pos()
self.addline('G2 X%.3f Y%.3f Z%.3f I1=%.3f J1=%.3f K1=%.3f F%.1f' % (xyz2[0], xyz2[1], xyz2[2], xyz1[0], xyz1[1], xyz1[2], self.SPEED_UNITS_MIN))
def setFrame(self, pose, frame_id=None, frame_name=None):
"""Change the robot reference frame"""
self.addcomment('------ Update reference: %s ------' % (frame_name if frame_name is not None else ''))
#self.addline('TRAORI')
self.set_cartesian_space()
#if frame_id is not None and frame_id > 0:
# self.addcomment('Using controller definition for tool %i' % frame_id)
# self.addline('G%i' % (frame_id+54-1))
# return
[x,y,z,a,b,c] = Pose_2_Staubli(pose)
x = x * MM_2_UNITS
y = y * MM_2_UNITS
z = z * MM_2_UNITS
self.addline('$P_UIFR[1]=CTRANS(X,%.5f,Y,%.5f,Z,%.5f):CROT(X,%.5f,Y,%.5f,Z,%.5f)' % (x,y,z,a,b,c))
self.addline('G54')
self.addcomment('---------------------------')
def setTool(self, pose, tool_id=None, tool_name=None):
"""Change the robot TCP"""
#if tool_id is not None and tool_id > 0:
# self.addline('T%i D1' % tool_id)
# self.addcomment('Using controller definition for tool %i' % frame_id)
# return
self.nId = self.nId + 1
self.addcomment('------ Update TCP: %s ------' % (tool_name if tool_name is not None else ''))
self.set_cartesian_space()#self.addline('TRAORI')
[ x, y, z,_a,_b,_c] = Pose_2_Staubli(roty(pi)*pose)
[_x,_y,_z, a, b, c] = Pose_2_Staubli(pose)
x = x * MM_2_UNITS
y = y * MM_2_UNITS
z = z * MM_2_UNITS
self.INV_TOOL_FRAME = invH(pose)
self.INV_TOOL_FRAME.setPos([0,0,0])
self.addline('$TC_DP5[1,1]=%.5f' % x)
self.addline('$TC_DP4[1,1]=%.5f' % y)
self.addline('$TC_DP3[1,1]=%.5f' % z)
#self.addline('$TC_DPC3[1,1]=%.5f' % a)
#self.addline('$TC_DPC2[1,1]=%.5f' % b)
#self.addline('$TC_DPC1[1,1]=%.5f' % c)
self.addline('$TC_DPC3[1,1]=0.0')
self.addline('$TC_DPC2[1,1]=0.0')
self.addline('$TC_DPC1[1,1]=0.0')
self.addline('T1 D1') # Use tool 1 profile 1
self.addcomment('---------------------------- ')
def Pause(self, time_ms):
"""Pause the robot program"""
if time_ms < 0:
#self.addline('G9 ; STOP') # can't continue
self.addline('M0 ; STOP')
else:
self.addline('G4 F%.0f ; pause in seconds' % (time_ms*0.001))
def setSpeed(self, speed_mms):
"""Changes the robot speed (in mm/s)"""
self.SPEED_UNITS_MIN = speed_mms*60.0*MM_2_UNITS
def setAcceleration(self, accel_mmss):
"""Changes the robot acceleration (in mm/s2)"""
self.addcomment('Acceleration set to %.3f mm/s2' % accel_mmss)
def setSpeedJoints(self, speed_degs):
"""Changes the robot joint speed (in deg/s)"""
#self.addcomment('Joint speed set to %.3f deg/s' % speed_degs)
self.SPEED_DEG_MIN = speed_degs * 60
def setAccelerationJoints(self, accel_degss):
"""Changes the robot joint acceleration (in deg/s2)"""
self.addcomment('Joint acceleration set to %.3f deg/s2' % accel_degss)
def setZoneData(self, zone_mm):
"""Changes the rounding radius (aka CNT, APO or zone data) to make the movement smoother"""
#self.addcomment('Look ahead desired tolerance: %.1f mm' % zone_mm)
if zone_mm < 0:
self.addline('CYCLE832(0,_OFF,1)')
else:
self.addline('CYCLE832(0.1,_FINISH,1)')
def setDO(self, io_var, io_value):
"""Sets a variable (digital output) to a given value"""
comment = 'Set digital output %s = %s' % (io_var, io_value)
if type(io_var) != str: # set default variable name if io_var is a number
io_var = 'P%s' % str(io_var)
if type(io_value) != str: # set default variable value if io_value is a number
if io_value > 0:
io_value = M_SET_DO_HIGH
else:
io_value = M_SET_DO_LOW
# at this point, io_var and io_value must be string values
self.addline('%s %s ; %s' % (io_value, io_var, comment))
def waitDI(self, io_var, io_value, timeout_ms=-1):
"""Waits for a variable (digital input) io_var to attain a given value io_value. Optionally, a timeout can be provided."""
comment = 'Wait Digital Input %s = %s' % (io_var, io_value)
if timeout_ms > 0:
comment = comment + ' (timeout = %.3f)' % (timeout_ms*0.001)
if type(io_var) != str: # set default variable name if io_var is a number
io_var = 'P%s' % str(io_var)
if type(io_value) != str: # set default variable value if io_value is a number
if io_value > 0:
io_value = 'L3'
else:
io_value = 'L4'
# at this point, io_var and io_value must be string values
if timeout_ms < 0:
self.addline('%s %s %s Q9999; %s' % (M_WAIT_DI, io_var, io_value, comment))
else:
self.addline('%s %s %s Q%.3f; %s' % (M_WAIT_DI, io_var, io_value, timeout_ms*0.001, comment))
def RunCode(self, code, is_function_call = False):
"""Adds code or a function call"""
if is_function_call:
code.replace(' ','_')
#self.addline(code)
self.addline('GOTOF ' + code)
self.addline(code + '_done:')
else:
self.addcomment(code)
def RunMessage(self, message, iscomment = False):
"""Display a message in the robot controller screen (teach pendant)"""
if iscomment:
self.addcomment(message)
else:
self.addcomment('Display message: %s' % message)
# ------------------ private ----------------------
def addline(self, newline):
"""Add a program line"""
self.Nline = self.Nline + 1
self.PROG = self.PROG + ('N%02i ' % self.Nline) + newline + '\n'
def addcomment(self, newline):
"""Add a comment line"""
self.PROG = self.PROG + '; ' + newline + '\n'
def addlog(self, newline):
"""Add a log message"""
self.LOG = self.LOG + newline + '\n'
# -------------------------------------------------
# ------------ For testing purposes ---------------
def Pose(xyzrpw):
[x,y,z,r,p,w] = xyzrpw
a = r*math.pi/180
b = p*math.pi/180
c = w*math.pi/180
ca = math.cos(a)
sa = math.sin(a)
cb = math.cos(b)
sb = math.sin(b)
cc = math.cos(c)
sc = math.sin(c)
return Mat([[cb*ca, ca*sc*sb - cc*sa, sc*sa + cc*ca*sb, x],[cb*sa, cc*ca + sc*sb*sa, cc*sb*sa - ca*sc, y],[-sb, cb*sc, cc*cb, z],[0,0,0,1]])
def test_post():
"""Test the post with a basic program"""
robot = RobotPost()
robot.ProgStart("Program")
robot.RunMessage("Program generated by RoboDK using a custom post processor", True)
robot.setFrame(Pose([807.766544, -963.699898, 41.478944, 0, 0, 0]))
robot.setTool(Pose([62.5, -108.253175, 100, -60, 90, 0]))
robot.MoveJ(Pose([200, 200, 500, 180, 0, 180]), [-46.18419, -6.77518, -20.54925, 71.38674, 49.58727, -302.54752] )
robot.MoveL(Pose([200, 250, 348.734575, 180, 0, -150]), [-41.62707, -8.89064, -30.01809, 60.62329, 49.66749, -258.98418] )
robot.MoveL(Pose([200, 200, 262.132034, 180, 0, -150]), [-43.73892, -3.91728, -35.77935, 58.57566, 54.11615, -253.81122] )
robot.RunMessage("Setting air valve 1 on")
robot.RunCode("TCP_On", True)
robot.Pause(1000)
robot.MoveL(Pose([200, 250, 348.734575, 180, 0, -150]), [-41.62707, -8.89064, -30.01809, 60.62329, 49.66749, -258.98418] )
robot.MoveL(Pose([250, 300, 278.023897, 180, 0, -150]), [-37.52588, -6.32628, -34.59693, 53.52525, 49.24426, -251.44677] )
robot.MoveL(Pose([250, 250, 191.421356, 180, 0, -150]), [-39.75778, -1.04537, -40.37883, 52.09118, 54.15317, -246.94403] )
robot.RunMessage("Setting air valve off")
robot.RunCode("TCP_Off", True)
robot.Pause(1000)
robot.MoveL(Pose([250, 300, 278.023897, 180, 0, -150]), [-37.52588, -6.32628, -34.59693, 53.52525, 49.24426, -251.44677] )
robot.MoveL(Pose([250, 200, 278.023897, 180, 0, -150]), [-41.85389, -1.95619, -34.89154, 57.43912, 52.34162, -253.73403] )
robot.MoveL(Pose([250, 150, 191.421356, 180, 0, -150]), [-43.82111, 3.29703, -40.29493, 56.02402, 56.61169, -249.23532] )
robot.MoveJ(None, [-46.18419, -6.77518, -20.54925, 71.38674, 49.58727, -302.54752] )
robot.ProgFinish("Program")
# robot.ProgSave(".","Program",True)
print(robot.PROG)
if len(robot.LOG) > 0:
mbox('Program generation LOG:\n\n' + robot.LOG)
input("Press Enter to close...")
if __name__ == "__main__":
"""Function to call when the module is executed by itself: test"""
test_post()