muMECH  1.0
stiffness.h
Go to the documentation of this file.
1 //********************************************************************************************************
2 // code: ### ### ##### #### ## ##
3 // ## ## ######## ## ## ## ## ##
4 // ## ## ## ## ## ### ## ######
5 // ## ## ## ## ## ## ## ## ##
6 // ##### ## ## ##### #### ## ##
7 // ##
8 //
9 // name: stiffness.h
10 // author(s): Jan Novak
11 // language: C, C++
12 // license: This program is free software; you can redistribute it and/or modify
13 // it under the terms of the GNU Lesser General Public License as published by
14 // the Free Software Foundation; either version 2 of the License, or
15 // (at your option) any later version.
16 //
17 // This program is distributed in the hope that it will be useful,
18 // but WITHOUT ANY WARRANTY; without even the implied warranty of
19 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 // GNU Lesser General Public License for more details.
21 //
22 // You should have received a copy of the GNU Lesser General Public License
23 // along with this program; if not, write to the Free Software
24 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25 //********************************************************************************************************
31 #ifndef MUMECH_STIFFNESS_H
32 #define MUMECH_STIFFNESS_H
33 
34 
35 namespace mumech {
36 
38 namespace Stiffness
39 {
47  void giveReducedIsoStiffMatrix( double *C, double E, double nu, bool twodim);
48 
55  void giveReducedIsoComplMatrix( double M[12], double E, double nu );
56 
57 } // end of namespace Stiffness
58 
59 } // end of namespace mumech
60 
61 #endif
62 
63 /*end of file*/
void giveReducedIsoStiffMatrix(double *C, double E, double nu, bool twodim)
Function gives the reduced isotropic stiffness matrix of a homogeneous material.
Definition: stiffness.cpp:35
void giveReducedIsoComplMatrix(double M[12], double E, double nu)
Function gives the reduced isotropic complience matrix of a homogeneous material. ...
Definition: stiffness.cpp:51