b2api
B2000++ API Reference Manual, VERSION 4.6
 
Loading...
Searching...
No Matches
b2vcct_property.H
1//------------------------------------------------------------------------
2// b2vcct_property.H --
3//
4// written by Thomas Ludwig
5//
6// Copyright (c) 2012-2012 SMR Engineering & Development SA
7// 2502 Bienne, Switzerland
8//
9// All Rights Reserved. Proprietary source code. The contents of
10// this file may not be disclosed to third parties, copied or
11// duplicated in any form, in whole or in part, without the prior
12// written permission of SMR.
13//------------------------------------------------------------------------
14
15#ifndef _B2VCCT_PROPERTY_H_
16#define _B2VCCT_PROPERTY_H_
17
18#include "model/b2element.H"
19
20namespace b2000 {
21
22class VCCTProperty : virtual public ElementProperty {
23public:
24 double kc;
25 double kr;
26 double g1c;
27 double g2c;
28 double g3c;
29};
30} // namespace b2000
31
32#endif /* _B2VCCT_PROPERTY_H_ */
Contains the base classes for implementing Finite Elements.
Definition b2boundary_condition.H:32