kupdatemd.h 1.55 KB
Newer Older
Mark Friedrichs's avatar
Mark Friedrichs committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
void  kupdate_md2 (const float  dtinv,
		::brook::stream posqp,
		::brook::stream posq,
		::brook::stream vnew,
		::brook::stream posqnew
	    ); 

void  kupdate_md1_extended (
		const float  dt,
		const float3  lg,
		const float  xi,
		const float3  M0,
		const float3  M1,
		const float3  M2,
		const float3  uold,
		::brook::stream posq,
		::brook::stream v,
		::brook::stream f,
		::brook::stream invmass,
		::brook::stream vnew,
		::brook::stream posqp);

void  kupdate_md_verlet(
		const float  dt,
		::brook::stream posq,
		::brook::stream v,
		::brook::stream f,
		::brook::stream invmass,
		::brook::stream vnew,
		::brook::stream posqp);


void  kupdate_md1_berendsen (
		const float  dt,
		const float3  lg,
		const float3  uold,
		::brook::stream posq,
		::brook::stream v,
		::brook::stream f,
		::brook::stream invmass,
		::brook::stream vnew,
		::brook::stream posqp); 

void  kupdate_md2_fix1 (const float  dtinv,
		::brook::stream posqp,
		::brook::stream posq,
		::brook::stream vnew,
		::brook::stream posqnew); 

void  kupdate_md1_extended_fix1 (const float  dt,
		const float3  lg,
		const float  xi,
		const float3  M0,
		const float3  M1,
		const float3  M2,
		const float3  uold,
		::brook::stream posq,
		::brook::stream v,
		::brook::stream f,
		::brook::stream invmass,
		::brook::stream vnew,
		::brook::stream posqp);

void  kupdate_md1_berendsen_fix1 (const float  dt,
		const float3  lg,
		const float3  uold,
		::brook::stream posq,
		::brook::stream v,
		::brook::stream f,
		::brook::stream invmass,
		::brook::stream vnew,
		::brook::stream posqp);