All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
rotation_about_axes_xyz_mapping.h
1 /* Copyright (C) 2004-2009 MBSim Development Team
2  *
3  * This library is free software; you can redistribute it and/or
4  * modify it under the terms of the GNU Lesser General Public
5  * License as published by the Free Software Foundation; either
6  * version 2.1 of the License, or (at your option) any later version.
7  *
8  * This library is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11  * Lesser General Public License for more details.
12  *
13  * You should have received a copy of the GNU Lesser General Public
14  * License along with this library; if not, write to the Free Software
15  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
16  *
17  * Contact: martin.o.foerg@gmail.com
18  */
19 
20 #ifndef _ROTATION_ABOUT_AXES_XYZ_MAPPING_H_
21 #define _ROTATION_ABOUT_AXES_XYZ_MAPPING_H_
22 
23 #include "mbsim/functions/function.h"
24 
25 namespace MBSim {
26 
27  template<class Arg>
28  class RotationAboutAxesXYZMapping : public Function<fmatvec::MatV(Arg)> {
29  private:
30  fmatvec::MatV T;
31  public:
33  int getArgSize() const { return 3; }
34  fmatvec::MatV operator()(const Arg &q) {
35  double alpha = q.e(0);
36  double beta = q.e(1);
37  double cos_beta = cos(beta);
38  double sin_beta = sin(beta);
39  double cos_alpha = cos(alpha);
40  double sin_alpha = sin(alpha);
41  double tan_beta = sin_beta/cos_beta;
42  T.e(0,1) = tan_beta*sin_alpha;
43  T.e(0,2) = -tan_beta*cos_alpha;
44  T.e(1,1) = cos_alpha;
45  T.e(1,2) = sin_alpha;
46  T.e(2,1) = -sin_alpha/cos_beta;
47  T.e(2,2) = cos_alpha/cos_beta;
48  return T;
49  }
50  };
51 
52 }
53 
54 #endif
Definition: rotation_about_axes_xyz_mapping.h:28
Definition: planar_contour.h:31

Impressum / Disclaimer / Datenschutz Generated by doxygen 1.8.5 Valid HTML