Gazebo Common

API Reference

4.7.0
gz/common/MaterialDensity.hh
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2016 Open Source Robotics Foundation
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  *
16 */
17 #ifndef IGNITION_COMMON_MATERIALDENSITY_HH_
18 #define IGNITION_COMMON_MATERIALDENSITY_HH_
19 
20 #include <string>
21 #include <limits>
22 #include <map>
23 #include <tuple>
24 
25 #include <gz/common/config.hh>
26 #include <gz/common/Export.hh>
27 
28 namespace ignition
29 {
30  namespace common
31  {
33  class IGNITION_COMMON_VISIBLE MaterialDensity
34  {
38  public: enum class Type
39  {
43  BEGIN = 0,
44 
46  STYROFOAM = BEGIN,
47 
49  PINE,
50 
52  WOOD,
53 
55  OAK,
56 
58  ICE,
59 
61  WATER,
62 
64  PLASTIC,
65 
67  CONCRETE,
68 
70  ALUMINUM,
71 
74 
77 
79  IRON,
80 
82  BRASS,
83 
85  COPPER,
86 
88  TUNGSTEN,
89 
93  END
94  };
95 
98  public: static const std::map<Type, double> &Materials();
99 
104  public: static double Density(const std::string &_material);
105 
109  public: static double Density(const Type _material);
110 
119  public: static std::tuple<Type, double> Nearest(
120  const double _value,
121  const double _epsilon = std::numeric_limits<double>::max());
122 
129  public: static Type NearestMaterial(const double _value,
130  const double _epsilon = std::numeric_limits<double>::max());
131 
132 #ifdef _WIN32
133 // Disable warning C4251
134 #pragma warning(push)
135 #pragma warning(disable: 4251)
136 #endif
137  private: static std::map<Type, double> materials;
139 #ifdef _WIN32
140 #pragma warning(pop)
141 #endif
142  };
143  }
144 }
145 #endif
static double Density(const std::string &_material)
Return the density of the given material name, or -1 if the material is not found.
Forward declarations for the common classes.
STL class.
@ ALUMINUM
Aluminum, density = 2700.0 kg/m^3.
Encapsulates density types.
Definition: gz/common/MaterialDensity.hh:33
@ WATER
Water, density = 1000.0 kg/m^3.
@ PLASTIC
Plastic, density = 1175.0 kg/m^3.
static const std::map< Type, double > & Materials()
Accessor for retrieving density entries.
@ WOOD
Wood, density = 700.0 kg/m^3.
@ BRASS
Brass, density = 8600.0 kg/m^3.
@ OAK
Oak, density = 710.0 kg/m^3.
@ PINE
Pine, density = 373.0 kg/m^3.
@ STEEL_ALLOY
Steel alloy, density = 7600.0 kg/m^3.
@ TUNGSTEN
Tungsten, density = 19300.0 kg/m^3.
@ STYROFOAM
Styrofoam, density = 75.0 kg/m^3.
@ IRON
Iron, density = 7870.0 kg/m^3.
@ CONCRETE
Concrete, density = 2000.0 kg/m^3.
@ ICE
Ice, density = 916.0 kg/m^3.
static Type NearestMaterial(const double _value, const double _epsilon=std::numeric_limits< double >::max())
Return the material with the closest density value within _epsilon, or MATERIAL_TYPE_END if not found...
@ STEEL_STAINLESS
Stainless steel, density = 7800.0 kg/m^3.
@ COPPER
Copper, density = 8940.0 kg/m^3.
static std::tuple< Type, double > Nearest(const double _value, const double _epsilon=std::numeric_limits< double >::max())
Return the material with the closest density value within _epsilon, or MATERIAL_TYPE_END if not found...
Type
Types of materials. Source: https://en.wikipedia.org/wiki/Density.
Definition: gz/common/MaterialDensity.hh:38