-
Notifications
You must be signed in to change notification settings - Fork 641
/
Copy pathstep.cpp
242 lines (211 loc) · 8.13 KB
/
step.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
/* Copyright (C) 2005-2019 Massachusetts Institute of Technology
%
% This program is free software; you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation; either version 2, or (at your option)
% any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program; if not, write to the Free Software Foundation,
% Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "meep.hpp"
#include "meep_internals.hpp"
#include "config.h"
#define RESTRICT
using namespace std;
namespace meep {
void fields::step() {
// however many times the fields have been synched, we want to restore now
int save_synchronized_magnetic_fields = synchronized_magnetic_fields;
if (synchronized_magnetic_fields) {
synchronized_magnetic_fields = 1; // reset synchronization count
restore_magnetic_fields();
}
am_now_working_on(Stepping);
if (!t) {
last_step_output_wall_time = wall_time();
last_step_output_t = t;
}
if (!quiet && wall_time() > last_step_output_wall_time + MIN_OUTPUT_TIME) {
master_printf("on time step %d (time=%g), %g s/step\n", t, time(),
(wall_time() - last_step_output_wall_time) / (t - last_step_output_t));
if (save_synchronized_magnetic_fields)
master_printf(" (doing expensive timestepping of synched fields)\n");
last_step_output_wall_time = wall_time();
last_step_output_t = t;
}
phase_material();
// update cached conductivity-inverse array, if needed
for (int i = 0; i < num_chunks; i++)
chunks[i]->s->update_condinv();
calc_sources(time()); // for B sources
step_db(B_stuff);
step_source(B_stuff);
step_boundaries(B_stuff);
calc_sources(time() + 0.5 * dt); // for integrated H sources
update_eh(H_stuff);
step_boundaries(WH_stuff);
update_pols(H_stuff);
step_boundaries(PH_stuff);
step_boundaries(H_stuff);
if (fluxes) fluxes->update_half();
calc_sources(time() + 0.5 * dt); // for D sources
step_db(D_stuff);
step_source(D_stuff);
step_boundaries(D_stuff);
calc_sources(time() + dt); // for integrated E sources
update_eh(E_stuff);
step_boundaries(WE_stuff);
update_pols(E_stuff);
step_boundaries(PE_stuff);
step_boundaries(E_stuff);
if (fluxes) fluxes->update();
t += 1;
update_dfts();
finished_working();
// re-synch magnetic fields if they were previously synchronized
if (save_synchronized_magnetic_fields) {
synchronize_magnetic_fields();
synchronized_magnetic_fields = save_synchronized_magnetic_fields;
}
}
double fields_chunk::peek_field(component c, const vec &where) {
double w[8];
ivec ilocs[8];
gv.interpolate(c, where, ilocs, w);
if (gv.contains(ilocs[0]) && f[c][0]) {
double hello = 0.0;
if (is_mine()) hello = f[c][0][gv.index(c, ilocs[0])];
broadcast(n_proc(), &hello, 1);
return hello;
}
// abort("Got no such %s field at %g %g!\n",
// component_name(c), gv[ilocs[0]].x(), gv[ilocs[0]].y());
return 0.0;
}
void fields::phase_material() {
bool changed = false;
if (is_phasing()) {
for (int i = 0; i < num_chunks; i++)
if (chunks[i]->is_mine()) {
chunks[i]->phase_material(phasein_time);
changed = changed || chunks[i]->new_s;
}
phasein_time--;
}
if (or_to_all(changed)) {
calc_sources(time() + 0.5 * dt); // for integrated H sources
update_eh(H_stuff); // ensure H = 1/mu * B
step_boundaries(H_stuff);
calc_sources(time() + dt); // for integrated E sources
update_eh(E_stuff); // ensure E = 1/eps * D
step_boundaries(E_stuff);
}
}
void fields_chunk::phase_material(int phasein_time) {
if (new_s && phasein_time > 0) {
changing_structure();
s->mix_with(new_s, 1.0 / phasein_time);
}
}
void fields::step_boundaries(field_type ft) {
connect_chunks(); // re-connect if !chunk_connections_valid
am_now_working_on(MpiTime);
// Do the metals first!
for (int i = 0; i < num_chunks; i++)
if (chunks[i]->is_mine()) chunks[i]->zero_metal(ft);
/* Note that the copying of data to/from buffers is order-sensitive,
and must be kept consistent with the code in boundaries.cpp.
In particular, we require that boundaries.cpp set up the connections
array so that all of the connections for process i come before all
of the connections for process i' for i < i' */
// First copy outgoing data to buffers...
for (int j = 0; j < num_chunks; j++)
if (chunks[j]->is_mine()) {
int wh[3] = {0, 0, 0};
for (int i = 0; i < num_chunks; i++) {
const int pair = j + i * num_chunks;
size_t n0 = 0;
for (int ip = 0; ip < 3; ip++) {
for (size_t n = 0; n < comm_sizes[ft][ip][pair]; n++)
comm_blocks[ft][pair][n0 + n] = *(chunks[j]->connections[ft][ip][Outgoing][wh[ip]++]);
n0 += comm_sizes[ft][ip][pair];
}
}
}
boundary_communications(ft);
// Finally, copy incoming data to the fields themselves, multiplying phases:
for (int i = 0; i < num_chunks; i++)
if (chunks[i]->is_mine()) {
int wh[3] = {0, 0, 0};
for (int j = 0; j < num_chunks; j++) {
const int pair = j + i * num_chunks;
connect_phase ip = CONNECT_PHASE;
for (size_t n = 0; n < comm_sizes[ft][ip][pair]; n += 2, wh[ip] += 2) {
const double phr = real(chunks[i]->connection_phases[ft][wh[ip] / 2]);
const double phi = imag(chunks[i]->connection_phases[ft][wh[ip] / 2]);
*(chunks[i]->connections[ft][ip][Incoming][wh[ip]]) =
phr * comm_blocks[ft][pair][n] - phi * comm_blocks[ft][pair][n + 1];
*(chunks[i]->connections[ft][ip][Incoming][wh[ip] + 1]) =
phr * comm_blocks[ft][pair][n + 1] + phi * comm_blocks[ft][pair][n];
}
size_t n0 = comm_sizes[ft][ip][pair];
ip = CONNECT_NEGATE;
for (size_t n = 0; n < comm_sizes[ft][ip][pair]; ++n)
*(chunks[i]->connections[ft][ip][Incoming][wh[ip]++]) = -comm_blocks[ft][pair][n0 + n];
n0 += comm_sizes[ft][ip][pair];
ip = CONNECT_COPY;
for (size_t n = 0; n < comm_sizes[ft][ip][pair]; ++n)
*(chunks[i]->connections[ft][ip][Incoming][wh[ip]++]) = comm_blocks[ft][pair][n0 + n];
}
}
finished_working();
}
void fields::step_source(field_type ft, bool including_integrated) {
if (ft != D_stuff && ft != B_stuff) abort("only step_source(D/B) is okay");
for (int i = 0; i < num_chunks; i++)
if (chunks[i]->is_mine()) chunks[i]->step_source(ft, including_integrated);
}
void fields_chunk::step_source(field_type ft, bool including_integrated) {
if (doing_solve_cw && !including_integrated) return;
for (src_vol *sv = sources[ft]; sv; sv = sv->next) {
component c = direction_component(first_field_component(ft), component_direction(sv->c));
const realnum *cndinv = s->condinv[c][component_direction(sv->c)];
if ((including_integrated || !sv->t->is_integrated) && f[c][0] &&
((ft == D_stuff && is_electric(sv->c)) || (ft == B_stuff && is_magnetic(sv->c)))) {
if (cndinv)
for (size_t j = 0; j < sv->npts; j++) {
const ptrdiff_t i = sv->index[j];
const complex<double> A = sv->current(j) * dt * double(cndinv[i]);
f[c][0][i] -= real(A);
if (!is_real) f[c][1][i] -= imag(A);
}
else
for (size_t j = 0; j < sv->npts; j++) {
const complex<double> A = sv->current(j) * dt;
const ptrdiff_t i = sv->index[j];
f[c][0][i] -= real(A);
if (!is_real) f[c][1][i] -= imag(A);
}
}
}
}
void fields::calc_sources(double tim) {
for (src_time *s = sources; s; s = s->next)
s->update(tim, dt);
for (int i = 0; i < num_chunks; i++)
if (chunks[i]->is_mine()) chunks[i]->calc_sources(tim);
}
void fields_chunk::calc_sources(double time) {
(void)time; // unused;
}
} // namespace meep