CG  Version 25
AdamsPCData.h
Go to the documentation of this file.
1 #ifndef ADAMS_PC_DATA_H
2 #define ADAMS_PC_DATA_H
3 
4 #include "OvertureTypes.h"
5 
6 // =========================================================================
7 // Ths class holds state data for the adams predictor-corrector methods
8 // =========================================================================
9 
10 
12 {
13 public:
14 AdamsPCData();
15 ~AdamsPCData();
16 
17 AdamsPCData(const AdamsPCData & x);
19 
20 real dtb;
23 int ndt0;
24 real dtp[5];
25 };
26 
27 
28 
29 #endif