-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathrk4.cpp
257 lines (234 loc) · 5.04 KB
/
rk4.cpp
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
# include <cmath>
# include <cstdlib>
# include <ctime>
# include <iomanip>
# include <iostream>
using namespace std;
# include "rk4.hpp"
//****************************************************************************80
double rk4 ( double t0, double u0, double dt, double f ( double t, double u ) )
//****************************************************************************80
//
// Purpose:
//
// RK4 takes one Runge-Kutta step for a scalar ODE.
//
// Discussion:
//
// It is assumed that an initial value problem, of the form
//
// du/dt = f ( t, u )
// u(t0) = u0
//
// is being solved.
//
// If the user can supply current values of t, u, a stepsize dt, and a
// function to evaluate the derivative, this function can compute the
// fourth-order Runge Kutta estimate to the solution at time t+dt.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 09 October 2013
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, double T0, the current time.
//
// Input, double U0, the solution estimate at the current time.
//
// Input, double DT, the time step.
//
// Input, double F ( double T, double U ), a function which evaluates
// the derivative, or right hand side of the problem.
//
// Output, double RK4, the fourth-order Runge-Kutta solution estimate
// at time T0+DT.
//
{
double f0;
double f1;
double f2;
double f3;
double t1;
double t2;
double t3;
double u;
double u1;
double u2;
double u3;
//
// Get four sample values of the derivative.
//
f0 = f ( t0, u0 );
t1 = t0 + dt / 2.0;
u1 = u0 + dt * f0 / 2.0;
f1 = f ( t1, u1 );
t2 = t0 + dt / 2.0;
u2 = u0 + dt * f1 / 2.0;
f2 = f ( t2, u2 );
t3 = t0 + dt;
u3 = u0 + dt * f2;
f3 = f ( t3, u3 );
//
// Combine to estimate the solution at time T0 + DT.
//
u = u0 + dt * ( f0 + 2.0 * f1 + 2.0 * f2 + f3 ) / 6.0;
return u;
}
//****************************************************************************80
double *rk4vec ( double t0, int m, double u0[], double dt,
double *f ( double t, int m, double u[] ) )
//****************************************************************************80
//
// Purpose:
//
// RK4VEC takes one Runge-Kutta step for a vector ODE.
//
// Discussion:
//
// It is assumed that an initial value problem, of the form
//
// du/dt = f ( t, u )
// u(t0) = u0
//
// is being solved.
//
// If the user can supply current values of t, u, a stepsize dt, and a
// function to evaluate the derivative, this function can compute the
// fourth-order Runge Kutta estimate to the solution at time t+dt.
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 09 October 2013
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// Input, double T0, the current time.
//
// Input, int M, the spatial dimension.
//
// Input, double U0[M], the solution estimate at the current time.
//
// Input, double DT, the time step.
//
// Input, double *F ( double T, int M, double U[] ), a function which evaluates
// the derivative, or right hand side of the problem.
//
// Output, double RK4VEC[M], the fourth-order Runge-Kutta solution estimate
// at time T0+DT.
//
{
double *f0;
double *f1;
double *f2;
double *f3;
int i;
double t1;
double t2;
double t3;
double *u;
double *u1;
double *u2;
double *u3;
//
// Get four sample values of the derivative.
//
f0 = f ( t0, m, u0 );
t1 = t0 + dt / 2.0;
u1 = new double[m];
for ( i = 0; i < m; i++ )
{
u1[i] = u0[i] + dt * f0[i] / 2.0;
}
f1 = f ( t1, m, u1 );
t2 = t0 + dt / 2.0;
u2 = new double[m];
for ( i = 0; i < m; i++ )
{
u2[i] = u0[i] + dt * f1[i] / 2.0;
}
f2 = f ( t2, m, u2 );
t3 = t0 + dt;
u3 = new double[m];
for ( i = 0; i < m; i++ )
{
u3[i] = u0[i] + dt * f2[i];
}
f3 = f ( t3, m, u3 );
//
// Combine them to estimate the solution.
//
u = new double[m];
for ( i = 0; i < m; i++ )
{
u[i] = u0[i] + dt * ( f0[i] + 2.0 * f1[i] + 2.0 * f2[i] + f3[i] ) / 6.0;
}
//
// Free memory.
//
delete [] f0;
delete [] f1;
delete [] f2;
delete [] f3;
delete [] u1;
delete [] u2;
delete [] u3;
return u;
}
//****************************************************************************80
void timestamp ( )
//****************************************************************************80
//
// Purpose:
//
// TIMESTAMP prints the current YMDHMS date as a time stamp.
//
// Example:
//
// 31 May 2001 09:45:54 AM
//
// Licensing:
//
// This code is distributed under the GNU LGPL license.
//
// Modified:
//
// 08 July 2009
//
// Author:
//
// John Burkardt
//
// Parameters:
//
// None
//
{
# define TIME_SIZE 40
static char time_buffer[TIME_SIZE];
const struct std::tm *tm_ptr;
size_t len;
std::time_t now;
now = std::time ( NULL );
tm_ptr = std::localtime ( &now );
len = std::strftime ( time_buffer, TIME_SIZE, "%d %B %Y %I:%M:%S %p", tm_ptr );
std::cout << time_buffer << "\n";
return;
# undef TIME_SIZE
}