Project

General

Profile

Statistics
| Branch: | Revision:

scoutos / scout / scoutsim / src / scout_constants.h @ 3a73516c

History | View | Annotate | Download (3.72 KB)

1
/**
2
 * The code in this package was developed using the structure of Willow
3
 * Garage's turtlesim package.  It was modified by the CMU Robotics Club
4
 * to be used as a simulator for the Colony Scout robot.
5
 *
6
 * All redistribution of this code is limited to the terms of Willow Garage's
7
 * licensing terms, as well as under permission from the CMU Robotics Club.
8
 * 
9
 * Copyright (c) 2011 Colony Project
10
 * 
11
 * Permission is hereby granted, free of charge, to any person
12
 * obtaining a copy of this software and associated documentation
13
 * files (the "Software"), to deal in the Software without
14
 * restriction, including without limitation the rights to use,
15
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
16
 * copies of the Software, and to permit persons to whom the
17
 * Software is furnished to do so, subject to the following
18
 * conditions:
19
 * 
20
 * The above copyright notice and this permission notice shall be
21
 * included in all copies or substantial portions of the Software.
22
 * 
23
 * Copyright (c) 2009, Willow Garage, Inc.
24
 * All rights reserved.
25
 * 
26
 * Redistribution and use in source and binary forms, with or without
27
 * modification, are permitted provided that the following conditions are met:
28
 * 
29
 *    Redistributions of source code must retain the above copyright
30
 *       notice, this list of conditions and the following disclaimer.
31
 *    Redistributions in binary form must reproduce the above copyright
32
 *       notice, this list of conditions and the following disclaimer in the
33
 *       documentation and/or other materials provided with the distribution.
34
 *    Neither the name of the Willow Garage, Inc. nor the names of its
35
 *       contributors may be used to endorse or promote products derived from
36
 *       this software without specific prior written permission.
37
 * 
38
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
39
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
40
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
41
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
42
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
43
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
44
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
45
 * OTHER DEALINGS IN THE SOFTWARE.
46
 */
47

    
48
/**
49
 * @file scout_constants.h
50
 *
51
 * @ingroup scoutsim
52
 * @{
53
 */
54

    
55
#ifndef _SCOUTSIM_SCOUT_CONSTANTS_
56
#define _SCOUTSIM_SCOUT_CONSTANTS_
57

    
58
#include <messages/set_motors.h>
59

    
60
/// TODO put these in a utility file somewhere?
61
#define min(x,y) ((x < y) ? x : y)
62
#define max(x,y) ((x > y) ? x : y)
63

    
64
namespace scoutsim
65
{
66
    // Maximum speed which will be sent to scoutsim in absolute units
67
    const int MAX_ABSOLUTE_SPEED = messages::set_motors::MAX_SPEED;
68
    const int MIN_ABSOLUTE_SPEED = messages::set_motors::MIN_SPEED;
69

    
70
    // Speed in m/s corresponding to maximum absolute speed
71
    const float MAX_SPEED_MPS = 1.0;
72

    
73
    // Pixels in scoutsim per real-world meter.
74
    // Note that scout image size has been set based on this.
75
    const float PIX_PER_METER = 200.0;
76

    
77
    // Scout dimensions, in meters
78
    const float SCOUT_WIDTH = 0.125;
79
    const float SCOUT_LENGTH = 0.23;
80

    
81
    // Position of sonar relative to robot center
82
    const float SCOUT_SONAR_X = -0.01;
83
    const float SCOUT_SONAR_Y = 0.0;
84

    
85
    // @todo Inaccurate. Update
86
    const float ENCODER_TICKS_PER_METER = 363.78;
87

    
88
    // @todo Update this
89
    const float SONAR_MAX_RANGE_M = 9.144;
90
    const unsigned int SONAR_MAX_RANGE_PIX = (unsigned int)
91
        (SONAR_MAX_RANGE_M * PIX_PER_METER);
92

    
93
    // Time it takes for the sonar to spin from position 0 to position 23
94
    const float SONAR_HALF_SPIN_TIME = 0.5;
95

    
96
    const float REAL_TIME_REFRESH_RATE = 0.05;   // s
97
    const float SIM_TIME_REFRESH_RATE = 0.02;   // s
98
}
99

    
100
#endif
101

    
102
/** @} */