• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

openmc-dev / openmc / 32064673974

17 Aug 2026 08:13PM UTC coverage: 81.333% (-0.09%) from 81.419%
32064673974

push

github

web-flow
Replace exported C API error globals (#4065)

18557 of 27007 branches covered (68.71%)

Branch coverage included in aggregate %.

34 of 59 new or added lines in 9 files covered. (57.63%)

60317 of 69970 relevant lines covered (86.2%)

49992887.12 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

75.49
/src/initialize.cpp
1
#include "openmc/initialize.h"
2

3
#include <clocale>
4
#include <cstddef>
5
#include <cstdlib> // for getenv
6
#include <cstring>
7
#include <string>
8

9
#ifdef _OPENMP
10
#include <omp.h>
11
#endif
12
#include <fmt/core.h>
13

14
#include "openmc/capi.h"
15
#include "openmc/chain.h"
16
#include "openmc/constants.h"
17
#include "openmc/cross_sections.h"
18
#include "openmc/error.h"
19
#include "openmc/file_utils.h"
20
#include "openmc/geometry_aux.h"
21
#include "openmc/hdf5_interface.h"
22
#include "openmc/material.h"
23
#include "openmc/memory.h"
24
#include "openmc/message_passing.h"
25
#include "openmc/mgxs_interface.h"
26
#include "openmc/nuclide.h"
27
#include "openmc/openmp_interface.h"
28
#include "openmc/output.h"
29
#include "openmc/plot.h"
30
#include "openmc/random_lcg.h"
31
#include "openmc/settings.h"
32
#include "openmc/simulation.h"
33
#include "openmc/string_utils.h"
34
#include "openmc/summary.h"
35
#include "openmc/tallies/tally.h"
36
#include "openmc/thermal.h"
37
#include "openmc/timer.h"
38
#include "openmc/vector.h"
39
#include "openmc/weight_windows.h"
40

41
#ifdef OPENMC_LIBMESH_ENABLED
42
#include "libmesh/libmesh.h"
43
#endif
44

45
int openmc_init(int argc, char* argv[], const void* intracomm)
9,203✔
46
{
47
  using namespace openmc;
9,203✔
48

49
#ifdef OPENMC_MPI
50
  // Check if intracomm was passed
51
  MPI_Comm comm;
4,028✔
52
  if (intracomm) {
4,028✔
53
    comm = *static_cast<const MPI_Comm*>(intracomm);
3,830✔
54
  } else {
55
    comm = MPI_COMM_WORLD;
47✔
56
  }
57

58
  // Initialize MPI for C++
59
  initialize_mpi(comm);
4,028✔
60
#endif
61

62
  // Parse command-line arguments
63
  int err = parse_command_line(argc, argv);
9,203✔
64
  if (err)
9,170✔
65
    return err;
66

67
#ifdef OPENMC_LIBMESH_ENABLED
68
  const int n_threads = num_threads();
1,720✔
69
  // initialize libMesh if it hasn't been initialized already
70
  // (if initialized externally, the libmesh_init object needs to be provided
71
  // also)
72
  if (!settings::libmesh_init && !libMesh::initialized()) {
1,720!
73
#if defined(OPENMC_MPI) && defined(LIBMESH_HAVE_MPI)
74
    // Pass command line arguments, the OpenMC communicator, and thread count.
75
    // Because libMesh was not initialized, we assume that OpenMC is the primary
76
    // application and that its main MPI comm should be used.
77
    settings::libmesh_init =
986✔
78
      make_unique<libMesh::LibMeshInit>(argc, argv, comm, n_threads);
1,972✔
79
#else
80
    // libMesh was built without MPI, so use its serial communicator.
81
    settings::libmesh_init =
734✔
82
      make_unique<libMesh::LibMeshInit>(argc, argv, 0, n_threads);
1,468✔
83
#endif
84

85
    settings::libmesh_comm = &(settings::libmesh_init->comm());
1,720✔
86
  }
87

88
#endif
89

90
  // Start total and initialization timer
91
  simulation::time_total.start();
9,159✔
92
  simulation::time_initialize.start();
9,159✔
93

94
#ifdef _OPENMP
95
  // If OMP_SCHEDULE is not set, default to a static schedule
96
  char* envvar = std::getenv("OMP_SCHEDULE");
5,218✔
97
  if (!envvar) {
5,218!
98
    omp_set_schedule(omp_sched_static, 0);
5,218✔
99
  }
100
#endif
101

102
  // Initialize random number generator -- if the user specifies a seed and/or
103
  // stride, it will be re-initialized later
104
  openmc::openmc_set_seed(DEFAULT_SEED);
9,159✔
105
  openmc::openmc_set_stride(DEFAULT_STRIDE);
9,159✔
106

107
  // Copy previous locale and set locale to C. This is a workaround for an issue
108
  // whereby when openmc_init is called from the plotter, the Qt application
109
  // framework first calls std::setlocale, which affects how pugixml reads
110
  // floating point numbers due to a bug:
111
  // https://github.com/zeux/pugixml/issues/469
112
  std::string prev_locale = std::setlocale(LC_ALL, nullptr);
9,159✔
113
  if (std::setlocale(LC_ALL, "C") == NULL) {
9,159!
114
    fatal_error("Cannot set locale to C.");
×
115
  }
116

117
  // Read XML input files
118
  if (!read_model_xml())
9,159✔
119
    read_separate_xml_files();
1,423✔
120

121
  if (!settings::properties_file.empty()) {
9,066✔
122
    openmc_properties_import(settings::properties_file.c_str());
11✔
123
  }
124

125
  // Reset locale to previous state
126
  if (std::setlocale(LC_ALL, prev_locale.c_str()) == NULL) {
9,066!
127
    fatal_error("Cannot reset locale.");
×
128
  }
129

130
  // Write some initial output under the header if needed
131
  initial_output();
9,066✔
132

133
  // Check for particle restart run
134
  if (settings::particle_restart_run)
9,066✔
135
    settings::run_mode = RunMode::PARTICLE;
56✔
136

137
  // Stop initialization timer
138
  simulation::time_initialize.stop();
9,066✔
139
  simulation::time_total.stop();
9,066✔
140

141
  return 0;
9,066✔
142
}
9,077✔
143

144
namespace openmc {
145

146
#ifdef OPENMC_MPI
147
void initialize_mpi(MPI_Comm intracomm)
4,028✔
148
{
149
  mpi::intracomm = intracomm;
4,028✔
150

151
  // Initialize MPI
152
  int flag;
4,028✔
153
  MPI_Initialized(&flag);
4,028✔
154
  if (!flag)
4,028✔
155
    MPI_Init(nullptr, nullptr);
3,264✔
156

157
  // Determine number of processes and rank for each
158
  MPI_Comm_size(intracomm, &mpi::n_procs);
4,028✔
159
  MPI_Comm_rank(intracomm, &mpi::rank);
4,028✔
160
  mpi::master = (mpi::rank == 0);
4,028✔
161

162
  // Create bank datatype
163
  SourceSite b;
4,028✔
164
  MPI_Aint disp[15];
4,028✔
165
  MPI_Get_address(&b.r, &disp[0]);
4,028✔
166
  MPI_Get_address(&b.u, &disp[1]);
4,028✔
167
  MPI_Get_address(&b.E, &disp[2]);
4,028✔
168
  MPI_Get_address(&b.time, &disp[3]);
4,028✔
169
  MPI_Get_address(&b.wgt, &disp[4]);
4,028✔
170
  MPI_Get_address(&b.delayed_group, &disp[5]);
4,028✔
171
  MPI_Get_address(&b.surf_id, &disp[6]);
4,028✔
172
  MPI_Get_address(&b.particle, &disp[7]);
4,028✔
173
  MPI_Get_address(&b.parent_nuclide, &disp[8]);
4,028✔
174
  MPI_Get_address(&b.parent_id, &disp[9]);
4,028✔
175
  MPI_Get_address(&b.progeny_id, &disp[10]);
4,028✔
176
  MPI_Get_address(&b.wgt_born, &disp[11]);
4,028✔
177
  MPI_Get_address(&b.wgt_ww_born, &disp[12]);
4,028✔
178
  MPI_Get_address(&b.n_split, &disp[13]);
4,028✔
179
  MPI_Get_address(&b.n_collision, &disp[14]);
4,028✔
180
  for (int i = 14; i >= 0; --i) {
64,448✔
181
    disp[i] -= disp[0];
60,420✔
182
  }
183

184
  // Block counts for each field
185
  int blocks[] = {3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
4,028✔
186

187
  // Types for each field
188
  MPI_Datatype types[] = {
4,028✔
189
    MPI_DOUBLE,  // r (3 doubles)
190
    MPI_DOUBLE,  // u (3 doubles)
191
    MPI_DOUBLE,  // E
192
    MPI_DOUBLE,  // time
193
    MPI_DOUBLE,  // wgt
194
    MPI_INT,     // delayed_group
195
    MPI_INT,     // surf_id
196
    MPI_INT,     // particle (enum)
197
    MPI_INT,     // parent_nuclide
198
    MPI_INT64_T, // parent_id
199
    MPI_INT64_T, // progeny_id
200
    MPI_DOUBLE,  // wgt_born
201
    MPI_DOUBLE,  // wgt_ww_born
202
    MPI_INT64_T, // n_split
203
    MPI_INT      // n_collision
204
  };
205

206
  MPI_Type_create_struct(15, blocks, disp, types, &mpi::source_site);
4,028✔
207
  MPI_Type_commit(&mpi::source_site);
4,028✔
208

209
  CollisionTrackSite bc;
4,028✔
210
  MPI_Aint dispc[16];
4,028✔
211
  MPI_Get_address(&bc.r, &dispc[0]);             // double
4,028✔
212
  MPI_Get_address(&bc.u, &dispc[1]);             // double
4,028✔
213
  MPI_Get_address(&bc.E, &dispc[2]);             // double
4,028✔
214
  MPI_Get_address(&bc.dE, &dispc[3]);            // double
4,028✔
215
  MPI_Get_address(&bc.time, &dispc[4]);          // double
4,028✔
216
  MPI_Get_address(&bc.wgt, &dispc[5]);           // double
4,028✔
217
  MPI_Get_address(&bc.event_mt, &dispc[6]);      // int
4,028✔
218
  MPI_Get_address(&bc.delayed_group, &dispc[7]); // int
4,028✔
219
  MPI_Get_address(&bc.cell_id, &dispc[8]);       // int
4,028✔
220
  MPI_Get_address(&bc.nuclide_id, &dispc[9]);    // int
4,028✔
221
  MPI_Get_address(&bc.material_id, &dispc[10]);  // int
4,028✔
222
  MPI_Get_address(&bc.universe_id, &dispc[11]);  // int
4,028✔
223
  MPI_Get_address(&bc.n_collision, &dispc[12]);  // int
4,028✔
224
  MPI_Get_address(&bc.particle, &dispc[13]);     // int
4,028✔
225
  MPI_Get_address(&bc.parent_id, &dispc[14]);    // int64_t
4,028✔
226
  MPI_Get_address(&bc.progeny_id, &dispc[15]);   // int64_t
4,028✔
227
  for (int i = 15; i >= 0; --i) {
68,476✔
228
    dispc[i] -= dispc[0];
64,448✔
229
  }
230

231
  int blocksc[] = {3, 3, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1};
4,028✔
232
  MPI_Datatype typesc[] = {MPI_DOUBLE, MPI_DOUBLE, MPI_DOUBLE, MPI_DOUBLE,
4,028✔
233
    MPI_DOUBLE, MPI_DOUBLE, MPI_INT, MPI_INT, MPI_INT, MPI_INT, MPI_INT,
234
    MPI_INT, MPI_INT, MPI_INT, MPI_INT64_T, MPI_INT64_T};
235

236
  MPI_Type_create_struct(
4,028✔
237
    16, blocksc, dispc, typesc, &mpi::collision_track_site);
238
  MPI_Type_commit(&mpi::collision_track_site);
4,028✔
239
}
4,028✔
240
#endif // OPENMC_MPI
241

242
int parse_command_line(int argc, char* argv[])
9,203✔
243
{
244
  int last_flag = 0;
9,203✔
245
  for (int i = 1; i < argc; ++i) {
10,743✔
246
    std::string arg {argv[i]};
1,551✔
247
    if (arg[0] == '-') {
1,551✔
248
      if (arg == "-p" || arg == "--plot") {
2,777!
249
        settings::run_mode = RunMode::PLOTTING;
119✔
250
        settings::check_overlaps = true;
119✔
251

252
      } else if (arg == "-n" || arg == "--particles") {
2,647!
253
        i += 1;
11✔
254
        settings::n_particles = std::stoll(argv[i]);
22✔
255

256
      } else if (arg == "-q" || arg == "--verbosity") {
2,636!
257
        i += 1;
×
258
        settings::verbosity = std::stoi(argv[i]);
×
259
        if (settings::verbosity > 10 || settings::verbosity < 1) {
×
260
          auto msg = fmt::format("Invalid verbosity: {}.", settings::verbosity);
×
NEW
261
          set_errmsg(msg);
×
262
          return OPENMC_E_INVALID_ARGUMENT;
×
263
        }
×
264

265
      } else if (arg == "-e" || arg == "--event") {
2,416!
266
        settings::event_based = true;
220✔
267
      } else if (arg == "-r" || arg == "--restart") {
2,077!
268
        i += 1;
119✔
269
        // Check what type of file this is
270
        hid_t file_id = file_open(argv[i], 'r', true);
119✔
271
        std::string filetype;
119✔
272
        read_attribute(file_id, "filetype", filetype);
119✔
273
        file_close(file_id);
119✔
274

275
        // Set path and flag for type of run
276
        if (filetype == "statepoint") {
119✔
277
          settings::path_statepoint = argv[i];
63✔
278
          settings::path_statepoint_c = settings::path_statepoint.c_str();
63✔
279
          settings::restart_run = true;
63✔
280
        } else if (filetype == "particle restart") {
56!
281
          settings::path_particle_restart = argv[i];
56✔
282
          settings::particle_restart_run = true;
56✔
283
        } else {
284
          auto msg =
×
285
            fmt::format("Unrecognized file after restart flag: {}.", filetype);
×
NEW
286
          set_errmsg(msg);
×
287
          return OPENMC_E_INVALID_ARGUMENT;
×
288
        }
×
289

290
        // If its a restart run check for additional source file
291
        if (settings::restart_run && i + 1 < argc) {
119!
292
          // Check if it has extension we can read
293
          if (ends_with(argv[i + 1], ".h5")) {
×
294

295
            // Check file type is a source file
296
            file_id = file_open(argv[i + 1], 'r', true);
×
297
            read_attribute(file_id, "filetype", filetype);
×
298
            file_close(file_id);
×
299
            if (filetype != "source") {
×
300
              std::string msg {
×
301
                "Second file after restart flag must be a source file"};
×
NEW
302
              set_errmsg(msg);
×
303
              return OPENMC_E_INVALID_ARGUMENT;
×
304
            }
×
305

306
            // It is a source file
307
            settings::path_sourcepoint = argv[i + 1];
119!
308
            i += 1;
309

310
          } else {
311
            // Source is in statepoint file
312
            settings::path_sourcepoint = settings::path_statepoint;
×
313
          }
314

315
        } else {
316
          // Source is assumed to be in statepoint file
317
          settings::path_sourcepoint = settings::path_statepoint;
238✔
318
        }
319

320
      } else if (arg == "-g" || arg == "--geometry-debug") {
2,077!
321
        settings::check_overlaps = true;
×
322
      } else if (arg == "-c" || arg == "--volume") {
1,174✔
323
        settings::run_mode = RunMode::VOLUME;
866✔
324
      } else if (arg == "-s" || arg == "--threads") {
180!
325
        // Read number of threads
326
        if (i + 1 >= argc) {
46!
327
          std::string msg {"Number of threads not specified."};
×
NEW
328
          set_errmsg(msg);
×
329
          return OPENMC_E_INVALID_ARGUMENT;
×
330
        }
×
331
        i += 1;
46✔
332

333
#ifdef _OPENMP
334
        // Read and set number of OpenMP threads
335
        int n_threads = std::stoi(argv[i]);
50✔
336
        if (n_threads < 1) {
25!
337
          std::string msg {"Number of threads must be positive."};
×
338
          set_errmsg(msg);
×
339
          return OPENMC_E_INVALID_ARGUMENT;
340
        }
341
        omp_set_num_threads(n_threads);
25✔
342
#else
343
        if (mpi::master) {
21✔
344
          warning("Ignoring number of threads specified on command line.");
40✔
345
        }
346
#endif
347

348
      } else if (arg == "-?" || arg == "-h" || arg == "--help") {
201!
349
        print_usage();
×
350
        return OPENMC_E_UNASSIGNED;
351

352
      } else if (arg == "-v" || arg == "--version") {
123!
353
        print_version();
11✔
354
        print_build_info();
11✔
355
        return OPENMC_E_UNASSIGNED;
356

357
      } else if (arg == "-t" || arg == "--track") {
56!
358
        settings::write_all_tracks = true;
56✔
359

360
      } else {
361
        fmt::print(stderr, "Unknown option: {}\n", argv[i]);
×
362
        print_usage();
×
363
        return OPENMC_E_UNASSIGNED;
364
      }
365

366
      last_flag = i;
367
    }
368
  }
1,551✔
369

370
  // Determine directory where XML input files are
371
  if (argc > 1 && last_flag < argc - 1) {
9,192✔
372
    settings::path_input = std::string(argv[last_flag + 1]);
103✔
373

374
    // check that the path is either a valid directory or file
375
    if (!dir_exists(settings::path_input) &&
193✔
376
        !file_exists(settings::path_input)) {
90✔
377
      fatal_error(fmt::format(
39✔
378
        "The path specified to the OpenMC executable '{}' does not exist.",
379
        settings::path_input));
380
    }
381

382
    // Add slash at end of directory if it isn't there
383
    if (!ends_with(settings::path_input, "/") &&
210!
384
        dir_exists(settings::path_input)) {
70✔
385
      settings::path_input += "/";
9,170✔
386
    }
387
  }
388

389
  return 0;
390
}
391

392
// TODO: Pulse-height tallies require per-history scoring across the full
393
// particle tree (parent + all descendants). The shared secondary bank
394
// transports each secondary as an independent Particle, breaking this
395
// assumption. A proper fix would defer pulse-height scoring: save
396
// (root_source_id, cell, pht_storage) per particle, then aggregate by
397
// root_source_id after all secondary generations complete before scoring
398
// into the histogram. For now, disable shared secondary when pulse-height
399
// tallies are present.
400
static void check_pulse_height_compatibility()
9,075✔
401
{
402
  if (settings::use_shared_secondary_bank) {
9,075✔
403
    for (const auto& t : model::tallies) {
720✔
404
      if (t->type_ == TallyType::PULSE_HEIGHT) {
428✔
405
        settings::use_shared_secondary_bank = false;
45✔
406
        warning("Pulse-height tallies are not yet compatible with the shared "
45✔
407
                "secondary bank. Disabling shared secondary bank.");
408
        break;
45✔
409
      }
410
    }
411
  }
412
}
9,075✔
413

414
bool read_model_xml()
9,159✔
415
{
416
  std::string model_filename = settings::path_input;
9,159✔
417

418
  // if the current filename is a directory, append the default model filename
419
  if (model_filename.empty() || dir_exists(model_filename))
9,159✔
420
    model_filename += "model.xml";
9,102✔
421

422
  // if this file doesn't exist, stop here
423
  if (!file_exists(model_filename))
9,159✔
424
    return false;
425

426
  // try to process the path input as an XML file
427
  pugi::xml_document doc;
7,736✔
428
  if (!doc.load_file(model_filename.c_str())) {
7,736!
429
    fatal_error(fmt::format(
×
430
      "Error reading from single XML input file '{}'", model_filename));
431
  }
432

433
  pugi::xml_node root = doc.document_element();
7,736✔
434

435
  // Read settings
436
  if (!check_for_node(root, "settings")) {
7,736!
437
    fatal_error("No <settings> node present in the model.xml file.");
×
438
  }
439
  auto settings_root = root.child("settings");
7,736✔
440

441
  // Verbosity
442
  if (check_for_node(settings_root, "verbosity") && settings::verbosity == -1) {
7,736!
443
    settings::verbosity = std::stoi(get_node_value(settings_root, "verbosity"));
60✔
444
  } else if (settings::verbosity == -1) {
7,706!
445
    settings::verbosity = 7;
7,706✔
446
  }
447

448
  // To this point, we haven't displayed any output since we didn't know what
449
  // the verbosity is. Now that we checked for it, show the title if necessary
450
  if (mpi::master) {
7,736✔
451
    if (settings::verbosity >= 2)
6,908✔
452
      title();
6,886✔
453
  }
454

455
  write_message(
7,736✔
456
    fmt::format("Reading model XML file '{}' ...", model_filename), 5);
9,186✔
457

458
  // Read chain data before settings so DecaySpectrum source distributions can
459
  // resolve nuclides while sources are constructed.
460
  read_chain_file_xml();
7,736✔
461

462
  read_settings_xml(settings_root);
7,736✔
463

464
  // If other XML files are present, display warning
465
  // that they will be ignored
466
  auto other_inputs = {"materials.xml", "geometry.xml", "settings.xml",
7,682✔
467
    "tallies.xml", "plots.xml"};
7,682✔
468
  for (const auto& input : other_inputs) {
45,254✔
469
    if (file_exists(settings::path_input + input)) {
37,773✔
470
      warning((fmt::format("Other XML file input(s) are present. These files "
238✔
471
                           "may be ignored in favor of the {} file.",
472
        model_filename)));
473
      break;
201✔
474
    }
475
  }
476

477
  // Read materials and cross sections
478
  if (!check_for_node(root, "materials")) {
7,682!
479
    fatal_error(fmt::format(
×
480
      "No <materials> node present in the {} file.", model_filename));
481
  }
482

483
  if (settings::run_mode != RunMode::PLOTTING) {
7,682✔
484
    read_cross_sections_xml(root.child("materials"));
7,596✔
485
  }
486
  read_materials_xml(root.child("materials"));
7,682✔
487

488
  // Read geometry
489
  if (!check_for_node(root, "geometry")) {
7,682!
490
    fatal_error(fmt::format(
×
491
      "No <geometry> node present in the {} file.", model_filename));
492
  }
493
  read_geometry_xml(root.child("geometry"));
7,682✔
494

495
  // Final geometry setup and assign temperatures
496
  finalize_geometry();
7,680✔
497

498
  // Finalize cross sections having assigned temperatures
499
  finalize_cross_sections();
7,680✔
500

501
  // Compute cell density multipliers now that material densities
502
  // have been finalized (from geometry_aux.h)
503
  finalize_cell_densities();
7,680✔
504

505
  if (check_for_node(root, "tallies"))
7,680✔
506
    read_tallies_xml(root.child("tallies"));
4,543✔
507

508
  check_pulse_height_compatibility();
7,662✔
509

510
  // Initialize distribcell_filters
511
  prepare_distribcell();
7,662✔
512

513
  if (check_for_node(root, "plots")) {
7,662✔
514
    read_plots_xml(root.child("plots"));
486✔
515
  } else {
516
    // When no <plots> element is present in the model.xml file, check for a
517
    // regular plots.xml file
518
    std::string filename = settings::path_input + "plots.xml";
7,176✔
519
    if (file_exists(filename)) {
7,176!
520
      read_plots_xml();
×
521
    }
522
  }
7,176✔
523

524
  finalize_variance_reduction();
7,653✔
525

526
  return true;
7,653✔
527
}
16,729✔
528

529
void read_separate_xml_files()
1,423✔
530
{
531
  // Read chain data before settings so DecaySpectrum source distributions can
532
  // resolve nuclides while sources are constructed.
533
  read_chain_file_xml();
1,423✔
534

535
  read_settings_xml();
1,423✔
536
  if (settings::run_mode != RunMode::PLOTTING) {
1,413✔
537
    read_cross_sections_xml();
1,380✔
538
  }
539

540
  read_materials_xml();
1,413✔
541
  read_geometry_xml();
1,413✔
542

543
  // Final geometry setup and assign temperatures
544
  finalize_geometry();
1,413✔
545

546
  // Finalize cross sections having assigned temperatures
547
  finalize_cross_sections();
1,413✔
548

549
  // Compute cell density multipliers now that material densities
550
  // have been finalized (from geometry_aux.h)
551
  finalize_cell_densities();
1,413✔
552

553
  read_tallies_xml();
1,413✔
554

555
  check_pulse_height_compatibility();
1,413✔
556

557
  // Initialize distribcell_filters
558
  prepare_distribcell();
1,413✔
559

560
  // Read the plots.xml regardless of plot mode in case plots are requested
561
  // via the API
562
  read_plots_xml();
1,413✔
563

564
  finalize_variance_reduction();
1,413✔
565
}
1,413✔
566

567
void initial_output()
9,066✔
568
{
569
  // write initial output
570
  if (settings::run_mode == RunMode::PLOTTING) {
9,066✔
571
    // Read plots.xml if it exists
572
    if (mpi::master && settings::verbosity >= 5)
110!
573
      print_plot();
88✔
574

575
  } else {
576
    // Write summary information
577
    if (mpi::master && settings::output_summary)
8,956✔
578
      write_summary();
7,552✔
579

580
    // Warn if overlap checking is on
581
    if (mpi::master && settings::check_overlaps) {
8,956!
582
      warning("Cell overlap checking is ON.");
×
583
    }
584
  }
585
}
9,066✔
586

587
} // namespace openmc
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE TRIAL · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc