Loading [MathJax]/extensions/tex2jax.js

dune-composites (unstable)

Layer.hh
1#ifndef LAYER__HH
2#define LAYER__HH
3
4namespace Dune{
5 namespace Composites{
6
12 class Layer{
13
14 public:
15
16 Layer(){};
17 void inline setElements(int nel_){ nel = nel_; }
18 void inline setMaterial(int material_){ material = material_;}
19 void inline setThickness(double thickness_){ thickness = thickness_;}
20 void inline setOrientation(double theta_){ theta = theta_; }
21 int inline getElements(){ return nel; }
22 double inline getThickness(){ return thickness; }
23 int inline getMaterial(){ return material; }
24 double inline getOrientation(){return theta; }
25
26 private:
27
28 double thickness;
29 int id;
30 int material;
31 int nel;
32 double theta;
33 };
34
35 }
36}
37
38
39#endif
Layer class.
Definition: Layer.hh:12
Creative Commons License   |  Legal Statements / Impressum  |  Hosted by TU Dresden & Uni Heidelberg  |  generated with Hugo v0.111.3 (Apr 3, 22:46, 2025)