openCARP
Doxygen code documentation for the open cardiac electrophysiology simulator openCARP
electrics_eikonal.cc
Go to the documentation of this file.
1 // SPDX-FileCopyrightText: Copyright (c) NumeriCor GmbH
2 // SPDX-License-Identifier: Apache-2.0
3 
12 #include "electrics_eikonal.h"
13 #include "electric_integrators.h"
14 #include <cstdlib>
15 #include "SF_globals.h"
16 #include "basics.h"
17 #include "petsc_utils.h"
18 #include "timers.h"
19 #include "stimulate.h"
20 
21 #include "SF_init.h"
22 
23 namespace opencarp
24 {
25 
27 {
28  if (get_size() > 1) {
29  log_msg(NULL, 5, 0, "DREAM/Eikonal physics currently do not support MPI parallelization. Use openMP instead. Aborting!");
30  EXIT(EXIT_FAILURE);
31  }
32 
33  double t1, t2;
34  get_time(t1);
35 
36  set_dir(OUTPUT);
37 
38  // open logger
39  logger = f_open("eikonal.log", param_globals::experiment != 4 ? "w" : "r");
40 
41  // setup mappings between extra and intra grids, algebraic and nodal,
42  // and between PETSc and canonical orderings
43  setup_mappings();
44 
45  eik_tech = static_cast<Eikonal::eikonal_t>(param_globals::dream.solve);
46 
47  // the ionic physics is currently triggered from inside the Electrics to have tighter
48  // control over it. The standalone eikonal solver does not require it.
49  switch (eik_tech) {
50  case EIKONAL: break;
51  default:
52  ion.logger = logger;
53  ion.initialize();
54  }
55 
56  // set up Intracellular tissue
57  set_elec_tissue_properties(mtype, intra_grid, logger);
58  region_mask(intra_elec_msh, mtype[intra_grid].regions, mtype[intra_grid].regionIDs, true, "gregion_i");
59 
60  // add electrics timer for time stepping, add to time stepper tool (TS)
61  double global_time = user_globals::tm_manager->time;
62  timer_idx = user_globals::tm_manager->add_eq_timer(global_time, param_globals::tend, 0,
63  param_globals::dt, 0, "elec::ref_dt", "TS");
64 
65  // electrics stimuli setup
66  setup_stimuli();
67 
68  // set up the linear equation systems. this needs to happen after the stimuli have been
69  // set up, since we need boundary condition info
70  setup_solvers();
71 
72  // the next setup steps require the solvers to be set up, since they use the matrices
73  // generated by those
74 
75  // initialize the LATs detector
76  switch (eik_tech) {
77  case EIKONAL: break; // not available for pure eikonal solve
78  default:
80  }
81 
82  // prepare the electrics output. we skip it if we do post-processing
83  if (param_globals::experiment != EXP_POSTPROCESS)
84  setup_output();
85 
86  this->initialize_time += timing(t2, t1);
87  log_msg(NULL, 0, 0, "All done in %f sec.", float(t2 - t1));
88 }
89 
90 void Eikonal::set_elec_tissue_properties(MaterialType* mtype, Eikonal::grid_t g, FILE_SPEC logger)
91 {
92  MaterialType* m = mtype + g;
93 
94  // initialize random conductivity fluctuation structure with PrM values
95  m->regions.resize(param_globals::num_gregions);
96 
97  const char* grid_name = g == Eikonal::intra_grid ? "intracellular" : "extracellular";
98  log_msg(logger, 0, 0, "Setting up %s tissue poperties for %d regions ..", grid_name,
99  param_globals::num_gregions);
100 
101  char buf[64];
102  RegionSpecs* reg = m->regions.data();
103 
104  for (size_t i = 0; i < m->regions.size(); i++, reg++) {
105  if (!strcmp(param_globals::gregion[i].name, "")) {
106  snprintf(buf, sizeof buf, ", gregion_%d", int(i));
107  param_globals::gregion[i].name = dupstr(buf);
108  }
109 
110  reg->regname = strdup(param_globals::gregion[i].name);
111  reg->regID = i;
112  reg->nsubregs = param_globals::gregion[i].num_IDs;
113  if (!reg->nsubregs)
114  reg->subregtags = NULL;
115  else {
116  reg->subregtags = new int[reg->nsubregs];
117 
118  for (int j = 0; j < reg->nsubregs; j++)
119  reg->subregtags[j] = param_globals::gregion[i].ID[j];
120  }
121 
122  // describe material in given region
123  elecMaterial* emat = new elecMaterial();
124  emat->material_type = ElecMat;
125 
126  emat->InVal[0] = param_globals::gregion[i].g_il;
127  emat->InVal[1] = param_globals::gregion[i].g_it;
128  emat->InVal[2] = param_globals::gregion[i].g_in;
129 
130  emat->ExVal[0] = param_globals::gregion[i].g_el;
131  emat->ExVal[1] = param_globals::gregion[i].g_et;
132  emat->ExVal[2] = param_globals::gregion[i].g_en;
133 
134  emat->BathVal[0] = param_globals::gregion[i].g_bath;
135  emat->BathVal[1] = param_globals::gregion[i].g_bath;
136  emat->BathVal[2] = param_globals::gregion[i].g_bath;
137 
138  // convert units from S/m -> mS/um
139  for (int j = 0; j < 3; j++) {
140  emat->InVal[j] *= 1e-3 * param_globals::gregion[i].g_mult;
141  emat->ExVal[j] *= 1e-3 * param_globals::gregion[i].g_mult;
142  emat->BathVal[j] *= 1e-3 * param_globals::gregion[i].g_mult;
143  }
144  reg->material = emat;
145  }
146 
147  {
149  const char* file = g == Eikonal::intra_grid ? param_globals::gi_scale_vec : param_globals::ge_scale_vec;
150  if (strlen(file))
151  read_el_scale_vec(file, mt, m->el_scale, m->el_scale_dpn);
152  }
153 }
154 
155 void Eikonal::setup_mappings()
156 {
157  bool intra_exits = mesh_is_registered(intra_elec_msh), extra_exists = mesh_is_registered(extra_elec_msh);
158  assert(intra_exits);
159  const int dpn = 1;
160 
161  // It may be that another physic (e.g. ionic models) has already computed the intracellular mappings,
162  // thus we first test their existence
163  if (get_scattering(intra_elec_msh, ALG_TO_NODAL, dpn) == NULL) {
164  log_msg(logger, 0, 0, "%s: Setting up intracellular algebraic-to-nodal scattering.", __func__);
166  }
168  log_msg(logger, 0, 0, "%s: Setting up intracellular PETSc to canonical permutation.", __func__);
170  }
171 }
172 
174 {
175  double t1, t2;
176  get_time(t1);
177 
178  switch (eik_tech) {
179  case EIKONAL: solve_EIKONAL(); break;
180  case DREAM: solve_DREAM(); break;
181  default: solve_RE(); break;
182  }
183 
185  // output lin solver stats
187  }
188  this->compute_time += timing(t2, t1);
189 
190  // since the traces have their own timing, we check for trace dumps in the compute step loop
193 }
194 
196 {
197  double t1, t2;
198  get_time(t1);
199 
200  switch (eik_tech) {
201  case EIKONAL: break;
202  default:
204  output_manager_time.write_data(); // does not exist in EIKONAL
205  }
206 
207  if (do_output_eikonal) {
209  do_output_eikonal = false;
210  }
211 
212  double curtime = timing(t2, t1);
213  this->output_time += curtime;
214 
215  IO_stats.calls++;
216  IO_stats.tot_time += curtime;
217 
220 }
221 
226 {
227  switch (eik_tech) {
228  case EIKONAL:
230  break;
231  default:
232  // output LAT data
236  // destroy ionics before closing the logger: the ionic interface holds an alias of it
237  ion.destroy();
238  }
239 
240  // close logger
241  f_close(logger);
242 }
243 
244 void Eikonal::setup_stimuli()
245 {
246  // initialize basic stim info data (used units, supported types, etc)
247  init_stim_info();
248 
249  stimuli.resize(param_globals::num_stim);
250  for (int i = 0; i < param_globals::num_stim; i++) {
251  // construct new stimulus
252  stimulus& s = stimuli[i];
253 
254  if (param_globals::stim[i].crct.type != 0 && param_globals::stim[i].crct.type != 9) {
255  // In the Eikonal class, only the intracellular domain is registered.
256  // Therefore, only I_tm and Vm_clmp are compatible.
257  log_msg(NULL, 5, 0, "%s error: stimulus of type %i is incompatible with the eikonal model! Use I_tm or Vm_clmp instead. Aborting!", __func__, s.phys.type);
258  EXIT(EXIT_FAILURE);
259  }
260 
262  s.translate(i);
263 
264  s.setup(i);
265 
266  if (s.electrode.dump_vtx)
267  s.dump_vtx_file(i);
268 
269  log_msg(NULL, 2, 0, "Only geometry, start time, npls, and bcl of stim[%i] are used", i);
270 
271  if (param_globals::stim[i].pulse.dumpTrace && get_rank() == 0) {
272  set_dir(OUTPUT);
273  s.pulse.wave.write_trace(s.name + ".trc");
274  }
275  }
276 
278 }
279 
280 void Eikonal::stimulate_intracellular()
281 {
282  parabolic_solver& ps = parab_solver;
283 
284  // iterate over stimuli
285  for (stimulus& s : stimuli) {
286  if (s.is_active()) {
287  // for active stimuli, deal with the stimuli-type specific stimulus application
288  switch (s.phys.type) {
289  case I_tm: {
290  if (param_globals::operator_splitting) {
291  apply_stim_to_vector(s, *ps.Vmv, true);
292  } else {
293  SF_real Cm = 1.0;
294  timer_manager& tm = *user_globals::tm_manager;
295  SF_real sc = tm.time_step / Cm;
296 
297  ps.Irhs->set(0.0);
298  apply_stim_to_vector(s, *ps.Irhs, true);
299 
300  *ps.tmp_i1 = *ps.IIon;
301  *ps.tmp_i1 -= *ps.Irhs;
302  *ps.tmp_i1 *= sc; // tmp_i1 = sc * (IIon - Irhs)
303 
304  // add ionic, transmembrane and intracellular currents to rhs
305  if (param_globals::parab_solve != parabolic_solver::EXPLICIT)
306  ps.mass_i->mult(*ps.tmp_i1, *ps.Irhs);
307  else
308  *ps.Irhs = *ps.tmp_i1;
309  }
310  break;
311  }
312 
313  case Illum: {
314  sf_vec* illum_vec = ion.miif->gdata[limpet::illum];
315 
316  if (illum_vec == NULL) {
317  log_msg(0, 5, 0, "Cannot apply illumination stim: global vector not present!");
318  EXIT(EXIT_FAILURE);
319  } else {
320  apply_stim_to_vector(s, *illum_vec, false);
321  }
322 
323  break;
324  }
325 
326  default: break;
327  }
328  }
329  }
330 }
331 
332 void Eikonal::clamp_Vm()
333 {
334  for (stimulus& s : stimuli) {
335  if (s.phys.type == Vm_clmp && s.is_active())
337  }
338 }
339 
340 void Eikonal::setup_output()
341 {
342  int rank = get_rank();
343  SF::vector<mesh_int_t>* restr_i = NULL;
344  SF::vector<mesh_int_t>* restr_e = NULL;
345  set_dir(OUTPUT);
346 
347  setup_dataout(param_globals::dataout_i, param_globals::dataout_i_vtx, intra_elec_msh,
348  restr_i, param_globals::num_io_nodes > 0);
349 
350  if (param_globals::dataout_i) {
351  switch (eik_tech) {
352  case EIKONAL:
353  output_manager_cycle.register_output(eik_solver.AT, intra_elec_msh, 1, param_globals::dream.output.atfile, "ms", restr_i);
354  break;
355  case DREAM:
356  output_manager_time.register_output(parab_solver.Vmv, intra_elec_msh, 1, param_globals::vofile, "mV", restr_i);
357  output_manager_cycle.register_output(eik_solver.AT, intra_elec_msh, 1, param_globals::dream.output.atfile, "ms", restr_i);
358  output_manager_cycle.register_output(eik_solver.RT, intra_elec_msh, 1, param_globals::dream.output.rtfile, "ms", restr_i);
359  if (strcmp(param_globals::dream.output.idifffile, "") != 0) {
360  output_manager_time.register_output(eik_solver.Idiff, intra_elec_msh, 1, param_globals::dream.output.idifffile, "muA/cm2", restr_i);
361  }
362  break;
363  default:
364  output_manager_time.register_output(parab_solver.Vmv, intra_elec_msh, 1, param_globals::vofile, "mV", restr_i);
365  output_manager_cycle.register_output(eik_solver.AT, intra_elec_msh, 1, param_globals::dream.output.atfile, "ms", restr_i);
366  if (strcmp(param_globals::dream.output.idifffile, "") != 0) {
367  output_manager_time.register_output(eik_solver.Idiff, intra_elec_msh, 1, param_globals::dream.output.idifffile, "muA/cm2", restr_i);
368  }
369  }
370  }
371 
373 
374  if (param_globals::num_trace) {
375  sf_mesh& imesh = get_mesh(intra_elec_msh);
376  open_trace(ion.miif, param_globals::num_trace, param_globals::trace_node, NULL, &imesh);
377  }
378 
379  // initialize generic logger for IO timings per time_dt
380  IO_stats.init_logger("IO_stats.dat");
381 }
382 
383 void Eikonal::dump_matrices()
384 {
385  std::string bsname = param_globals::dump_basename;
386  std::string fn;
387 
388  set_dir(OUTPUT);
389 
390  // dump monodomain matrices
391  if (param_globals::parab_solve == 1) {
392  // using Crank-Nicolson
393  fn = bsname + "_Ki_CN.bin";
394  parab_solver.lhs_parab->write(fn.c_str());
395  }
396  fn = bsname + "_Ki.bin";
397  parab_solver.rhs_parab->write(fn.c_str());
398 
399  fn = bsname + "_Mi.bin";
400  parab_solver.mass_i->write(fn.c_str());
401 }
402 
405 double Eikonal::timer_val(const int timer_id)
406 {
407  // determine
408  int sidx = stimidx_from_timeridx(stimuli, timer_id);
409  double val = 0.0;
410  if (sidx != -1) {
411  stimuli[sidx].value(val);
412  } else
413  val = std::nan("NaN");
414 
415  return val;
416 }
417 
420 std::string Eikonal::timer_unit(const int timer_id)
421 {
422  int sidx = stimidx_from_timeridx(stimuli, timer_id);
423  std::string s_unit;
424 
425  if (sidx != -1)
426  // found a timer-linked stimulus
427  s_unit = stimuli[sidx].pulse.wave.f_unit;
428 
429  return s_unit;
430 }
431 
432 void Eikonal::setup_solvers()
433 {
434  set_dir(OUTPUT);
435 
436  switch (eik_tech) {
437  case EIKONAL:
438  eik_solver.init();
439  break;
440  default:
441  parab_solver.init();
443  eik_solver.init();
445  if (param_globals::dump2MatLab) dump_matrices();
446  }
447 }
448 
449 void Eikonal::checkpointing()
450 {
451  const timer_manager& tm = *user_globals::tm_manager;
452 
453  // regular user selected state save
454  if (tm.trigger(iotm_chkpt_list)) {
455  char save_fnm[1024];
456  const char* tsav_ext = get_tsav_ext(tm.time);
457 
458  snprintf(save_fnm, sizeof save_fnm, "%s.%s.roe", param_globals::write_statef, tsav_ext);
459 
460  ion.miif->dump_state(save_fnm, tm.time, intra_elec_msh, false, GIT_COMMIT_COUNT);
461  eik_solver.save_eikonal_state(tsav_ext);
462  }
463 
464  // checkpointing based on interval
465  if (tm.trigger(iotm_chkpt_intv)) {
466  char save_fnm[1024];
467  snprintf(save_fnm, sizeof save_fnm, "checkpoint.%.1f.roe", tm.time);
468  ion.miif->dump_state(save_fnm, tm.time, intra_elec_msh, false, GIT_COMMIT_COUNT);
469  }
470 }
471 
472 void Eikonal::solve_EIKONAL()
473 {
474  if (user_globals::tm_manager->time == 0) {
475  eik_solver.FIM();
478  do_output_eikonal = true;
479  }
480 }
481 
482 void Eikonal::solve_RE()
483 {
484  if (user_globals::tm_manager->time == 0) {
485  eik_solver.FIM();
488  do_output_eikonal = true;
489  }
490  solve_RD();
491 }
492 
493 void Eikonal::solve_DREAM()
494 {
496  solve_RD();
497  } else {
498  if (user_globals::tm_manager->time != 0) {
500  }
501 
502  eik_solver.cycFIM();
504 
507  do_output_eikonal = true;
508  }
509 }
510 
511 void Eikonal::solve_RD()
512 {
513  // if requested, we checkpoint the current state
514  checkpointing();
515 
516  // activation checking
517  const double time = user_globals::tm_manager->time,
518  time_step = user_globals::tm_manager->time_step;
519 
520  lat.check_acts(time);
521  lat.check_quiescence(time, time_step);
522 
523  clamp_Vm();
524 
525  *parab_solver.old_vm = *parab_solver.Vmv; // needed in step D of DREAM
526 
527  // compute ionics update
528  ion.compute_step();
529 
530  // Compute the I diff current
531  *eik_solver.Idiff *= 0;
534 
535  if (eik_tech == REp) {
537  }
538 
539  switch (eik_tech) {
541  default: break;
542  }
543 
544  clamp_Vm();
545 }
546 
548 {
549  if (param_globals::output_level > 1) log_msg(0, 0, 0, "\n *** Initializing Eikonal Solver ***\n");
550  stats.init_logger("eik_stats.dat");
551 
552  if (param_globals::dream.output.debugNode >= 0) {
553  nodeData.idX = param_globals::dream.output.debugNode;
554  char buf[256];
555  snprintf(buf, sizeof buf, "node_%lld.dat", static_cast<long long>(nodeData.idX));
556  nodeData.init_logger(buf);
557  }
558 
559  // currently only used for output
560  const sf_mesh& mesh = get_mesh(intra_elec_msh);
561  twoFib = mesh.she.size() > 0;
565 
566  num_pts = mesh.l_numpts;
567 
568  e2n_con = mesh.con; // Connectivity vector with nodes that belong to each element
569  // The 4 nodes from index 4j to 4j+3 belong to the same element for 0<=j<num elements
570  elem_start = mesh.dsp; // For the i_th element elem_start[j] stores its starting position in the "connect" vector
571 
575 
576  List.assign(num_pts, 0); // List of active nodes
577  T_A.assign(num_pts, inf); // Activation times
578  D_I.assign(num_pts, 0); // Diastolic Intervals
579  T_R.assign(num_pts, -400); // Recovery times
580  TA_old.assign(num_pts, inf); // Activation Time is the previous cycle
581  num_changes.assign(num_pts, 0); // Number of Times entered in the List per current LAT
582  nReadded2List.assign(num_pts, 0); // Number of Times entered in the List per current LAT
583  stim_status.assign(num_pts, 0); // Status of nodes
584 
585  switch (mesh.type[0]) {
586  case 0:
587  MESH_SIZE = 4;
588  break;
589 
590  case 6:
591  MESH_SIZE = 3;
592  break;
593 
594  case 7:
595  MESH_SIZE = 2;
596  break;
597 
598  default:
599  log_msg(0, 5, 0, "Error: Type of element is not compatible with this version of the eikonal model. Use tetrahedra or triangles");
600  EXIT(EXIT_FAILURE);
601  break;
602  }
603 
604  if (strlen(param_globals::start_statef) > 0) load_state_file();
605 
606  create_node_to_node_graph();
607 
608  translate_stim_to_eikonal();
609 
610  precompute_squared_anisotropy_metric();
611 }
612 
614 {
615  double t1, t2;
616  get_time(t1);
617 
618  const sf_mesh& mesh = get_mesh(intra_elec_msh);
619 
620  diff_cur.resize(mesh.l_numpts);
621  rho_cvrest.resize(mesh.l_numpts);
625 
626  // --- Precompute resolved region IDs for each point ---
627  // Use the same region delegation as the ionics class
628  SF::vector<int> regionIDs;
629  SF::vector<RegionSpecs> rs(param_globals::num_imp_regions);
630  for (size_t i = 0; i < rs.size(); i++) {
631  rs[i].nsubregs = param_globals::imp_region[i].num_IDs;
632  rs[i].subregtags = param_globals::imp_region[i].ID;
633  for (int j = 0; j < rs[i].nsubregs; j++) {
634  if (rs[i].subregtags[j] == -1 && get_rank() == 0)
635  log_msg(NULL, 3, ECHO, "Warning: not all %u IDs provided for imp_region[%u]!\n", rs[i].nsubregs, i);
636  }
637  }
638  if (rs.size() == 1) {
639  regionIDs.assign(mesh.l_numpts, 0);
640  } else {
641  region_mask(intra_elec_msh, rs, regionIDs, false, "imp_regions");
642  }
643 
644  // --- Parallel initialization, one write per vertex ---
645  #pragma omp parallel for schedule(dynamic)
646  for (int v = 0; v < mesh.l_numpts; v++) {
647  int reg = regionIDs[v];
648 
649  const auto& region_diff = param_globals::imp_region[reg].dream.Idiff;
650  const auto& region_rest = param_globals::imp_region[reg].dream.CVrest;
651 
652  auto model = static_cast<eikonal_solver::Idiff_t>(region_diff.model);
653  diff_cur[v].model = model;
654 
655  if (model == GAUSS) {
656  diff_cur[v].alpha_1 = region_diff.alpha_i[0];
657  diff_cur[v].alpha_2 = region_diff.alpha_i[1];
658  diff_cur[v].alpha_3 = region_diff.alpha_i[2];
659  diff_cur[v].beta_1 = region_diff.beta_i[0];
660  diff_cur[v].beta_2 = region_diff.beta_i[1];
661  diff_cur[v].beta_3 = region_diff.beta_i[2];
662  diff_cur[v].gamma_1 = region_diff.gamma_i[0];
663  diff_cur[v].gamma_2 = region_diff.gamma_i[1];
664  diff_cur[v].gamma_3 = region_diff.gamma_i[2];
665  } else {
666  diff_cur[v].A_F = region_diff.A_F;
667  diff_cur[v].tau_F = region_diff.tau_F;
668  diff_cur[v].V_th = region_diff.V_th;
669  }
670 
671  rho_cvrest[v] = region_rest.rho;
672  kappa_cvrest[v] = region_rest.kappa;
673  theta_cvrest[v] = region_rest.theta;
674  denom_cvrest[v] = log(region_rest.rho) / region_rest.psi;
675  }
676  if (param_globals::output_level) log_msg(NULL, 0, 0, "Diffusion current and CV restitution initialized in %f sec.", timing(t2, t1));
677 }
678 
679 void eikonal_solver::translate_stim_to_eikonal()
680 {
681  double t1, t2;
682  get_time(t1);
683  Index_currStim = 0;
684 
685  // Collect all pulses as (start_time, stimulus_index)
686  std::vector<std::pair<SF_real, int>> stim_events;
687  stim_events.reserve(param_globals::num_stim * 8); // rough guess
688 
689  for (int stim_idx = 0; stim_idx < stimuliRef->size(); ++stim_idx) {
690  const stimulus& s = (*stimuliRef)[stim_idx];
691  for (int idx_pls = 0; idx_pls < s.ptcl.npls; ++idx_pls) {
692  SF_real start_time = s.ptcl.start + s.ptcl.pcl * idx_pls;
693  stim_events.emplace_back(start_time, stim_idx);
694  }
695  }
696 
697  // Sort events by start_time
698  std::sort(stim_events.begin(), stim_events.end(),
699  [](auto& a, auto& b) { return a.first < b.first; });
700 
701  // Reserve enough space for output
702  size_t total_nodes = 0;
703  for (auto& ev : stim_events)
704  total_nodes += (*stimuliRef)[ev.second].electrode.vertices.size();
705  StimulusPoints.resize(total_nodes + 1, -1);
706  StimulusTimes.resize(total_nodes + 1, -1);
707 
708  // Fill outputs
709  size_t count = 0;
710  for (auto& ev : stim_events) {
711  const stimulus& s = (*stimuliRef)[ev.second];
712  for (mesh_int_t v : s.electrode.vertices) {
713  StimulusPoints[count] = v;
714  StimulusTimes[count] = ev.first;
715  ++count;
716  }
717  }
718 
719  if (param_globals::output_level)
720  log_msg(NULL, 0, 0, "Translating stimuli for eikonal model done in %f sec.", timing(t2, t1));
721 }
722 
723 void eikonal_solver::create_node_to_node_graph()
724 {
725  double t1, t2;
726  get_time(t1);
727 
728  n2n_dsp.resize(num_pts + 1, 0);
729  const sf_mesh& mesh = get_mesh(intra_elec_msh);
730 
731  // Thread-local storage for neighbors
732  std::vector<std::vector<mesh_int_t>> thread_neighbors(num_pts);
733 
734  // Preallocate thread-local marker arrays for O(n) duplicate removal
735  #pragma omp parallel
736  {
737  std::vector<char> mark(num_pts, 0); // one per thread
738 
739  #pragma omp for schedule(dynamic)
740  for (int point_idx = 0; point_idx < num_pts; point_idx++) {
741  int numNBElem = n2e_dsp[point_idx + 1] - n2e_dsp[point_idx];
742  std::vector<mesh_int_t> neighbors;
743  neighbors.reserve(numNBElem * MESH_SIZE); // rough estimate
744 
745  // Loop over all elements containing this node
746  for (int eedsp = 0; eedsp < numNBElem; eedsp++) {
747  int currElem = n2e_con[n2e_dsp[point_idx] + eedsp];
748 
749  // Loop over all nodes of the current element
750  for (int nndsp = 0; nndsp < MESH_SIZE; nndsp++) {
751  int nb = e2n_con[elem_start[currElem] + nndsp];
752 
753  if (nb == point_idx) continue; // skip self
754  if (!mark[nb]) {
755  mark[nb] = 1;
756  neighbors.push_back(nb);
757  }
758  }
759  }
760 
761  // Reset marks for the next iteration
762  for (int nb : neighbors) mark[nb] = 0;
763 
764  // Move neighbor list into the final container
765  thread_neighbors[point_idx] = std::move(neighbors);
766  }
767  }
768 
769  // Build prefix sums (serial, cheap compared to above)
770  for (int i = 0; i < num_pts; i++) {
771  n2n_dsp[i + 1] = n2n_dsp[i] + thread_neighbors[i].size();
772  }
773 
774  // Allocate once, then fill in parallel
775  n2n_connect.resize(n2n_dsp[num_pts]);
776 
777  #pragma omp parallel for schedule(static)
778  for (int i = 0; i < num_pts; i++) {
779  std::copy(thread_neighbors[i].begin(),
780  thread_neighbors[i].end(),
781  n2n_connect.begin() + n2n_dsp[i]);
782  }
783 
784  if (param_globals::output_level) {
785  log_msg(NULL, 0, 0, "Node-to-node graph done in %f sec.", timing(t2, t1));
786  }
787 }
788 
789 void eikonal_solver::precompute_squared_anisotropy_metric()
790 {
791  double t1, t2;
792  get_time(t1);
793 
794  const sf_mesh& mesh = get_mesh(intra_elec_msh);
795 
796  S.resize(mesh.l_numelem); // store anisotropy matrices (dimensionless)
797  CV_L.resize(mesh.l_numelem); // store CV_L per element for later use
798 
799  // temporary variables
800  SF::dmat<double> I(3, 3);
801  I.assign(0.0);
802  I.diag(1.0);
803 
804  #pragma omp parallel
805  {
806  SF::dmat<double> Saniso(3, 3);
807  SF::dmat<double> Ff(3, 3);
808  SF::dmat<double> diff(3, 3);
809  SF::Point f, s, n;
810 
811  #pragma omp for schedule(static)
812  for (int eidx = 0; eidx < mesh.l_numelem; eidx++) {
813  double vl = 0.0, vt = 0.0, vn = 0.0;
814 
815  // Find region match (break early when found)
816  for (int g = 0; g < param_globals::num_gregions; g++) {
817  const auto& reg = param_globals::gregion[g];
818  const auto& dream = reg.dream;
819  for (int j = 0; j < reg.num_IDs; j++) {
820  if (mesh.tag[eidx] == reg.ID[j]) {
821  vl = dream.vel_l;
822  vt = dream.vel_t;
823  vn = dream.vel_n;
824  goto region_found; // break out of both loops
825  }
826  }
827  }
828  region_found:;
829 
830  // Store CV_L directly (for later rescaling)
831  CV_L[eidx] = vl;
832 
833  // Compute anisotropy ratios relative to CV_L
834  double AR_T2 = (vl / vt) * (vl / vt);
835  double AR_N2 = (vl / vn) * (vl / vn);
836 
837  f.x = mesh.fib[3 * eidx + 0];
838  f.y = mesh.fib[3 * eidx + 1];
839  f.z = mesh.fib[3 * eidx + 2];
840 
841  if (twoFib) {
842  s.x = mesh.she[3 * eidx + 0];
843  s.y = mesh.she[3 * eidx + 1];
844  s.z = mesh.she[3 * eidx + 2];
845  n = cross(f, s);
846 
847  SF::outer_prod(f, f, 1.0, Saniso[0], false);
848  SF::outer_prod(s, s, AR_T2, Saniso[0], true);
849  SF::outer_prod(n, n, AR_N2, Saniso[0], true);
850  } else {
851  SF::outer_prod(f, f, 1.0, Ff[0], false);
852  diff = I - Ff;
853  diff *= AR_T2;
854 
855  Saniso = Ff + diff;
856  }
857 
858  S[eidx] = Saniso;
859  }
860  }
861 
862  if (param_globals::output_level)
863  log_msg(NULL, 0, 0, "Anisotropy tensors precomputed in %f sec.", timing(t2, t1));
864 }
865 
867 {
868  double t0, t1;
869  get_time(t0);
870 
871  // --- 0) Reset all activation times to infinity
872  std::fill(T_A.begin(), T_A.end(), inf);
873 
874  // --- 1) Build initial active list = neighbors of stimuli
875  std::vector<mesh_int_t> activeList;
876  activeList.reserve(num_pts / 10); // heuristic reserve to avoid frequent reallocs
877  std::vector<char> in_active(num_pts, 0);
878 
879  // Mark stimuli
880  for (size_t si = 0; si < StimulusTimes.size() - 1; ++si) { // skip last entry, since its a -1 placeholder currently still used in DREAM
881  mesh_int_t s = StimulusPoints[si];
882  T_A[s] = StimulusTimes[si];
883  }
884  // Seed neighbors; separate loop to avoid adding stim nodes into the list if they are a neighbor
885  for (size_t si = 0; si < StimulusTimes.size() - 1; ++si) { // skip last entry, since its a -1 placeholder currently still used in DREAM
886  mesh_int_t s = StimulusPoints[si];
887  for (int off = n2n_dsp[s]; off < n2n_dsp[s + 1]; ++off) {
888  mesh_int_t nb = n2n_connect[off];
889  if (T_A[nb] == inf) {
890  add_to_active(activeList, in_active, nb);
891  }
892  }
893  }
894 
895  // --- 2) Iterative solve of activeList
896  int niter = 0;
897  while (!activeList.empty() && niter <= param_globals::dream.fim.max_iter) {
898  const std::vector<mesh_int_t> activeVec = std::move(activeList);
899  activeList.clear();
900 
901  #pragma omp parallel
902  {
903  std::vector<mesh_int_t> local_active;
904  local_active.reserve(64); // small local buffer
905 
906  #pragma omp for schedule(dynamic)
907  for (size_t i = 0; i < activeVec.size(); ++i) {
908  mesh_int_t id = activeVec[i];
909  remove_from_active(in_active, id);
910 
911  SF_real p = T_A[id];
912  SF_real q = update(id);
913 
914  #pragma omp atomic write
915  T_A[id] = q;
916 
917  if (std::fabs(p - q) < param_globals::dream.fim.tol) {
918  for (int off = n2n_dsp[id]; off < n2n_dsp[id + 1]; ++off) {
919  mesh_int_t nb = n2n_connect[off];
920  p = T_A[nb];
921  q = update(nb);
922  if (p > q) {
923  #pragma omp atomic write
924  T_A[nb] = q;
925  local_active.push_back(nb);
926  }
927  }
928  } else {
929  local_active.push_back(id); // non-converged -> add back
930  }
931  }
932 
933  // Merge local results
934  #pragma omp critical
935  {
936  for (mesh_int_t nb : local_active) {
937  add_to_active(activeList, in_active, nb);
938  }
939  }
940  }
941  ++niter;
942  }
943 
944  // collect iteration stats
945  stats.update_iter(niter);
946  auto [minIt, maxIt] = std::minmax_element(T_A.begin(), T_A.end());
947  actMIN = *minIt;
948  actMAX = *maxIt;
949 
950  // --- 3) Copy into AT for output
951  double* atc = AT->ptr();
952  const SF_real* t_a = T_A.data();
953  #pragma omp parallel for simd
954  for (mesh_int_t i = 0; i < num_pts; ++i)
955  atc[i] = (t_a[i] == inf ? -1.0 : t_a[i]);
956  AT->release_ptr(atc);
957 
958  // --- 4) Timing & list‐size stats
959  auto dur = timing(t1, t0);
960  stats.slvtime_A += dur;
961  stats.minAT = actMIN;
962  stats.maxAT = actMAX;
963  stats.activeList = activeList.size();
964  stats.bc_status = true;
966 }
967 
969 {
970  int niter = 0;
971  double t1, t0;
972  get_time(t0);
973 
974  if (sum(List) == 0) {
975  compute_bc();
976  }
977 
978  double time2stop_eikonal = param_globals::dream.tau_inc;
979  float maxadvance = user_globals::tm_manager->time + param_globals::dream.tau_s + param_globals::dream.tau_inc + param_globals::dream.tau_max;
980 
981  do {
982  if (StimulusTimes[Index_currStim] <= maxadvance) {
983  compute_bc();
984  }
985 
986  for (mesh_int_t indX = 0; indX < List.size(); indX++) {
987  SF_real p = T_A[indX];
988  SF_real q;
989 
990  if (List[indX] == 0) continue;
991 
992  q = compute_coherence(indX);
993 
994  T_A[indX] = q;
995  num_changes[indX] = num_changes[indX] + 1;
996 
997  if (q > maxadvance) continue;
998 
999  if (abs(p - q) < param_globals::dream.fim.tol || (num_changes[indX] > param_globals::dream.fim.max_iter) || (q == inf || p == inf)) {
1000  for (int ii = n2n_dsp[indX]; ii < n2n_dsp[indX + 1]; ii++) {
1001  mesh_int_t indXNB = n2n_connect[ii];
1002 
1003  if (List[indXNB] == 1) {
1004  continue;
1005  }
1006 
1007  SF_real pNB = T_A[indXNB];
1008  SF_real qNB;
1009 
1010  qNB = compute_coherence(indXNB);
1011 
1012  bool node_is_valid = add_node_neighbor_to_list(T_R[indXNB], pNB, qNB) && qNB != inf && qNB > user_globals::tm_manager->time;
1013  // This second condition is there to be able to add a node to the list when a new valid activation time
1014  // is found but a reentry would be blocked by the L2 parameter. Normally this condition does not make or brake the
1015  // simulation but would leave individual nodes inactivated, which is not ideal.
1016  bool ignore_L2_if_valid = node_is_valid && qNB > pNB && nReadded2List[indXNB] >= param_globals::dream.fim.max_addpt;
1017 
1018  if (node_is_valid && (nReadded2List[indXNB] < param_globals::dream.fim.max_addpt) || ignore_L2_if_valid) {
1019  if (qNB > pNB) {
1020  nReadded2List[indXNB] = 0;
1021  }
1022  T_A[indXNB] = qNB;
1023  nReadded2List[indXNB]++;
1024  num_changes[indXNB] = 0;
1025  List[indXNB] = 1;
1026  if (param_globals::dream.output.debugNode == indXNB) {
1028  nodeData.idXNB = indX;
1029  nodeData.nbn_T_A = q;
1030  }
1031  }
1032  }
1033 
1034  List[indX] = 0;
1035  if (param_globals::dream.output.debugNode == indX) {
1037  }
1038  }
1039  }
1040 
1041  SF_real actMIN_old = actMIN;
1042  SF_real progress_time;
1043 
1044  update_Ta_in_active_list();
1045 
1046  if (actMIN > actMIN_old) {
1047  progress_time = actMIN - actMIN_old;
1048  } else {
1049  progress_time = 0;
1050  }
1051 
1052  time2stop_eikonal -= progress_time;
1053  niter++;
1054 
1055  } while (time2stop_eikonal > 0 && sum(List) > 0);
1056 
1057  if (sum(List) == 0) {
1059  }
1060 
1061  // copy for igb output
1062  double* atc = AT->ptr();
1063  double* rpt = RT->ptr();
1064  for (mesh_int_t i = 0; i < List.size(); i++) {
1065  if (T_A[i] == inf) {
1066  // for better visualization in meshalyzer
1067  atc[i] = -1;
1068  } else {
1069  atc[i] = T_A[i];
1070  }
1071  rpt[i] = T_R[i];
1072  }
1073  AT->release_ptr(atc);
1074  RT->release_ptr(rpt);
1075 
1076  // treat solver statistics
1077  auto dur = timing(t1, t0);
1078  stats.slvtime_A += dur;
1079  stats.update_iter(niter);
1080  stats.minAT = actMIN;
1081  stats.maxAT = actMAX;
1082  stats.activeList = sum(List);
1084 
1085  // treat node stats
1086  if (param_globals::dream.output.debugNode >= 0) {
1090  }
1091 
1092 } // close iterate list
1093 
1094 SF_real eikonal_solver::update(mesh_int_t& indX, SF_real CVrest_factor, bool isDREAM)
1095 {
1096  switch (MESH_SIZE) {
1097  case 4: return update_impl<4>(indX, CVrest_factor, isDREAM);
1098  case 3: return update_impl<3>(indX, CVrest_factor, isDREAM);
1099  case 2: return update_impl<2>(indX, CVrest_factor, isDREAM);
1100  default:
1101  return T_A[indX]; // fallback
1102  }
1103 }
1104 
1105 template <int N>
1106 SF_real eikonal_solver::update_impl(mesh_int_t& indX, SF_real CVrest_factor, bool CheckValidity)
1107 {
1108  double min = inf;
1109  const double time = user_globals::tm_manager->time;
1110  const sf_mesh& mesh = get_mesh(intra_elec_msh);
1111 
1112  // element-wise update
1113  for (int e_i = n2e_dsp[indX]; e_i < n2e_dsp[indX + 1]; e_i++) { // gather all elements the node belongs to
1114  int Elem_i = n2e_con[e_i];
1115  mesh_int_t indEle = elem_start[Elem_i];
1116  std::array<SF::Point, N> base; // points
1117  std::array<double, N> values; // activation times
1118  std::array<int, N> nodeIDs;
1119 
1120  std::size_t k = 0;
1121  for (std::size_t j = 0; j < N; j++) { // loop over nodes of element e_i
1122  int n_i = e2n_con[indEle + j];
1123  if (n_i != indX) {
1124  base[k].x = mesh.xyz[3 * n_i + 0]; base[k].y = mesh.xyz[3 * n_i + 1]; base[k].z = mesh.xyz[3 * n_i + 2];
1125  values[k] = T_A[n_i];
1126  nodeIDs[k] = n_i;
1127  k++;
1128  } else { // last slot is reserved for the current vertex we are solving for
1129  base[N - 1].x = mesh.xyz[3 * indX + 0]; base[N - 1].y = mesh.xyz[3 * indX + 1]; base[N - 1].z = mesh.xyz[3 * indX + 2];
1130  values[N - 1] = T_A[indX];
1131  nodeIDs[N - 1] = indX;
1132  }
1133  }
1134  // scale slowness metric by CV
1135  double cv = CV_L[Elem_i] * CVrest_factor;
1136  if (cv == 0.0) continue; // avoid 1/(cv*cv)
1137  SF::dmat<double> D = 1.0 / (cv * cv) * S[Elem_i];
1138 
1139  // 1) solve full N-simplex (eikonal run OR if valid for DREAM)
1140  if (!CheckValidity || !is_not_valid_update<N>(nodeIDs, time)) {
1141  LocalSolver<N> solver(D, base, values);
1142  SF_real tmp = solver.solve();
1143  if (min > tmp && tmp > T_R[indX] && compute_H(indX, tmp) > 0.0) {
1144  min = tmp;
1145  }
1146  continue;
1147  }
1148 
1149  // If the full N-simplex was not valid, we have to do additional checks for the DREAM,
1150  // since a subsimplex could be valid if e.g. only one node of a tet/triangle is invalid
1151  // 2) triangles that include the target (only done if MESH_SIZE is 4)
1152  if constexpr (N - 1 == 3) {
1153  // neighbor indices are 0..(N-2); choose pairs (i,j) and add target (N-1)
1154  for (int i = 0; i < (N - 1); ++i) {
1155  for (int j = i + 1; j < (N - 1); ++j) {
1156  // build nodeIDs/points/values for face {i, j, target}
1157  std::array<int, 3> tri_ids{nodeIDs[i], nodeIDs[j], nodeIDs[N - 1]};
1158  if (is_not_valid_update<3>(tri_ids, time)) continue;
1159 
1160  std::array<SF::Point, 3> tri_pts{base[i], base[j], base[N - 1]};
1161  std::array<double, 3> tri_vals{values[i], values[j], values[N - 1]};
1162 
1163  LocalSolver<3> solver(D, tri_pts, tri_vals);
1164  // min = std::min(min, solver.solve());
1165  SF_real tmp = solver.solve();
1166  if (min > tmp && tmp > T_R[indX] && compute_H(indX, tmp) > 0.0) {
1167  min = tmp;
1168  }
1169  }
1170  }
1171  }
1172 
1173  // 3) edges that include the target
1174  for (int i = 0; i < N - 1; i++) {
1175  std::array<int, 2> edge_ids{nodeIDs[i], nodeIDs[N - 1]};
1176  if (is_not_valid_update<2>(edge_ids, time)) continue;
1177 
1178  std::array<SF::Point, 2> edge_pts{base[i], base[N - 1]};
1179  std::array<double, 2> edge_vals{values[i], values[N - 1]};
1180 
1181  LocalSolver<2> solver(D, edge_pts, edge_vals);
1182  SF_real tmp = solver.solve();
1183  if (min > tmp && tmp > T_R[indX] && compute_H(indX, tmp) > 0.0) {
1184  min = tmp;
1185  }
1186  }
1187  }
1188 
1189  return min;
1190 }
1191 
1192 template <int N>
1193 bool eikonal_solver::is_not_valid_update(const std::array<int, N>& nodeIDs, double time)
1194 {
1195  const int target = nodeIDs[N - 1];
1196  const bool failedStim = (stim_status[target] == 2);
1197 
1198  for (int i = 0; i < N - 1; i++) {
1199  const int nb = nodeIDs[i];
1200 
1201  if (T_A[nb] < time) return true;
1202  if (T_A[nb] < T_R[nb]) return true;
1203  if (failedStim && stim_status[nb] == 1) return true;
1204  }
1205 
1206  return false;
1207 }
1208 
1209 SF_real eikonal_solver::compute_H(mesh_int_t& indX, SF_real& tmpTA)
1210 {
1211  // Apply a refractory delay if stimulus previously failed
1212  const double delay = (stim_status[indX] == 2) ? 5.0 : 0.0;
1213 
1214  // Early exit conditions
1215  if (tmpTA == inf ||
1216  (T_R[indX] + delay) == -400.0 ||
1217  std::fabs(tmpTA - TA_old[indX]) < param_globals::dream.fim.tol ||
1218  T_R[indX] > tmpTA) {
1219  return 1.0;
1220  }
1221 
1222  // Compute diastolic interval
1223  const double DI = tmpTA - (T_R[indX] + delay);
1224  D_I[indX] = DI;
1225 
1226  // CV restitution factor
1227  const double exponent = -(DI + kappa_cvrest[indX]) * denom_cvrest[indX];
1228  const double Factor_DI = 1.0 - rho_cvrest[indX] * std::exp(exponent);
1229 
1230  if (Factor_DI <= 0.0) {
1231  return 0.0;
1232  }
1233 
1234  // Apply restitution curve behavior
1235  return (DI <= theta_cvrest[indX]) ? -Factor_DI : Factor_DI;
1236 }
1237 
1238 SF_real eikonal_solver::compute_coherence(mesh_int_t& indX)
1239 {
1240  SF_real scaling = 1.0;
1241  SF_real p = T_A[indX]; // starting guess (previous arrival time)
1242  SF_real q = update(indX, scaling, true); // candidate new arrival time
1243 
1244  for (int niter = 0; niter < param_globals::dream.fim.max_coh; ++niter) {
1245  scaling = compute_H(indX, p); // restitution-based scaling for CV (can be negative mid-iteration)
1246  q = update(indX, std::fabs(scaling), true); // new candidate arrival time; use fabs() to allow intermediate negative scaling
1247 
1248  if (std::fabs(p - q) < param_globals::dream.fim.tol)
1249  break; // converged
1250 
1251  p = q; // continue iterating
1252  }
1253 
1254  // Only accept q if final state is physiologically valid
1255  return (compute_H(indX, q) < 0.0) ? T_A[indX] : q;
1256 }
1257 
1258 void eikonal_solver::compute_bc()
1259 {
1260  bool EmpList = sum(List) == 0;
1261 
1262  if (EmpList) {
1263  for (size_t j = Index_currStim; j < StimulusTimes.size(); j++) {
1264  if ((StimulusPoints[j] == -1) || (StimulusTimes[j] > StimulusTimes[Index_currStim])) {
1265  Index_currStim = j;
1266  break;
1267  }
1268 
1269  mesh_int_t indNode = StimulusPoints[j];
1270  SF_real TimeSt = StimulusTimes[j];
1271 
1272  bool cond2add = add_node_neighbor_to_list(T_R[indNode], T_A[indNode], TimeSt);
1273  if (cond2add && compute_H(indNode, TimeSt) > 0) {
1274  T_A[indNode] = TimeSt;
1275  stim_status[indNode] = 1;
1276  stats.bc_status = true;
1277 
1278  if (param_globals::dream.output.debugNode == indNode) {
1279  nodeData.T_A = TimeSt;
1281  }
1282 
1283  for (int ii = n2n_dsp[indNode]; ii < n2n_dsp[indNode + 1]; ii++) {
1284  mesh_int_t indXNB = n2n_connect[ii];
1285  if (List[indXNB] == 0) {
1286  List[indXNB] = 1;
1287  if (param_globals::dream.output.debugNode == indXNB) {
1289  nodeData.idXNB = indNode;
1290  nodeData.nbn_T_A = TimeSt;
1291  }
1292  }
1293  }
1294  }
1295 
1296  if (cond2add && compute_H(indNode, TimeSt) <= 0) {
1297  stim_status[indNode] = 2;
1298  }
1299  }
1300 
1301  // After NB of initial points are assigned remove initial points from the list if they were added in the previous loop.
1302  for (size_t j = 0; j < StimulusPoints.size(); j++) {
1303  if ((StimulusPoints[j] == -1) && (StimulusTimes[j] > StimulusTimes[Index_currStim])) continue;
1304  if (List[StimulusPoints[j]] == 1) {
1305  List[StimulusPoints[j]] = 0;
1306  if (param_globals::dream.output.debugNode == StimulusPoints[j]) nodeData.update_status(node_stats::out, node_stats::stim);
1307  }
1308  }
1309 
1311  } else {
1312  for (size_t i = Index_currStim; i < StimulusTimes.size(); i++) {
1313  mesh_int_t indNode = StimulusPoints[i];
1314  SF_real TimeSt = StimulusTimes[i];
1315 
1316  if (indNode == -1) continue;
1317 
1318  if (TimeSt <= actMAX) {
1319  bool cond2add = add_node_neighbor_to_list(T_R[indNode], T_A[indNode], TimeSt);
1320  if (cond2add && compute_H(indNode, TimeSt) > 0) {
1321  T_A[indNode] = TimeSt;
1322  stim_status[indNode] = 1;
1323  stats.bc_status = true;
1324 
1325  if (param_globals::dream.output.debugNode == indNode) {
1326  nodeData.T_A = TimeSt;
1328  }
1329 
1330  for (int ii = n2n_dsp[indNode]; ii < n2n_dsp[indNode + 1]; ii++) {
1331  mesh_int_t indXNB = n2n_connect[ii];
1332  if (List[indXNB] == 0) {
1333  List[indXNB] = 1;
1334  if (param_globals::dream.output.debugNode == indXNB) {
1336  nodeData.idXNB = indNode;
1337  nodeData.nbn_T_A = TimeSt;
1338  }
1339  }
1340  }
1341 
1342  for (size_t j = 0; j < StimulusPoints.size(); j++) {
1343  if ((StimulusPoints[j] == -1) && (StimulusTimes[j] > StimulusTimes[Index_currStim])) continue;
1344  if (List[StimulusPoints[j]] == 1) {
1345  List[StimulusPoints[j]] = 0;
1346  if (param_globals::dream.output.debugNode == StimulusPoints[j]) nodeData.update_status(node_stats::out, node_stats::stim);
1347  }
1348  }
1349  }
1350  if (cond2add && compute_H(indNode, TimeSt) <= 0) {
1351  stim_status[indNode] = 2;
1352  }
1353 
1354  } else {
1355  Index_currStim = i;
1356 
1357  break;
1358  }
1359  }
1360  }
1361 
1362 } // end compute stimulus
1363 
1365 {
1366  bool act_is_in_safety_window, empty_list_and_illegal_stimulus, empty_stimulus, stimulus_is_in_safety_window;
1367 
1368  act_is_in_safety_window = (actMIN > param_globals::dream.tau_s) && (actMIN - time > param_globals::dream.tau_s);
1369  empty_stimulus = (StimulusPoints[Index_currStim] == -1);
1370  stimulus_is_in_safety_window = (StimulusTimes[Index_currStim] - time > param_globals::dream.tau_s);
1371  empty_list_and_illegal_stimulus = (sum(List) == 0) && (empty_stimulus || stimulus_is_in_safety_window);
1372 
1373  return act_is_in_safety_window || empty_list_and_illegal_stimulus;
1374 }
1375 
1376 void eikonal_solver::update_Ta_in_active_list()
1377 {
1378  bool First_in_List = 1;
1379 
1380  for (size_t j = 0; j < List.size(); j++) {
1381  if (T_A[j] < 0) continue;
1382  if (List[j] == 1 && First_in_List) {
1383  actMIN = T_A[j];
1384  actMAX = T_A[j];
1385  First_in_List = 0;
1386  continue;
1387  }
1388  if (List[j] == 1) {
1389  if (T_A[j] < actMIN) actMIN = T_A[j];
1390  if (T_A[j] > actMAX) actMAX = T_A[j];
1391  }
1392  }
1393 }
1394 
1396 {
1397  for (size_t j = 0; j < List.size(); j++) {
1398  if (T_A[j] < user_globals::tm_manager->time) {
1399  TA_old[j] = T_A[j];
1400  stim_status[j] = 0;
1401  nReadded2List[j] = 0;
1402 
1403  if (List[j] == 1) List[j] = 0;
1404  }
1405  }
1406 }
1407 
1408 bool eikonal_solver::add_node_neighbor_to_list(SF_real& RT, SF_real& oldTA, SF_real& newTA)
1409 {
1410  // Condition (A): RT < newTA < oldTA
1411  // Condition (B): oldTA < RT < newTA
1412  return ((RT < newTA) && (newTA < oldTA)) ||
1413  ((oldTA < RT) && (RT < newTA));
1414 }
1415 
1417 {
1418  SF_real* old_ptr = Vmv_old.ptr();
1419  SF_real* new_ptr = Vmv.ptr();
1420 
1421  const double thresh = param_globals::dream.repol_time_thresh;
1422 
1423  for (int ind_nodes = 0; ind_nodes < num_pts; ind_nodes++) {
1424  if (old_ptr[ind_nodes] >= thresh && new_ptr[ind_nodes] < thresh) {
1425  T_R[ind_nodes] = time;
1426  }
1427  }
1428 
1429  Vmv_old.release_ptr(old_ptr);
1430  Vmv.release_ptr(new_ptr);
1431 }
1432 
1434 {
1435  double t1, t0;
1436  get_time(t0);
1437 
1438  #ifdef _OPENMP
1439  int max_threads = omp_get_max_threads();
1440  omp_set_num_threads(1); // with the current setup of this function, it is better to run it in serial.
1441  #endif
1442 
1443  limpet::MULTI_IF* miif = ion.miif;
1444 
1445  const double time = user_globals::tm_manager->time,
1447 
1448  for (int i = 0; i < miif->N_IIF; i++) {
1449  if (!miif->N_Nodes[i]) continue;
1450  limpet::IonIfBase* pIF = ion.miif->IIF[i];
1451  limpet::IonIfBase* IIF_old = pIF->get_type().make_ion_if(pIF->get_target(),
1452  pIF->get_num_node(),
1453  ion.miif->plugtypes[i]);
1454  IIF_old->copy_SVs_from(*pIF, false);
1455 
1456  int current = 0;
1457  do {
1458  int ind_gb = (miif->NodeLists[i][current]);
1459  // Global index of current node;
1460  // save states at the moment
1461  double Vm_old = miif->ldata[i][limpet::Vm][current];
1462  double Iion_old = miif->ldata[i][limpet::Iion][current];
1463  double prev_R = T_R[ind_gb];
1464 
1465  bool cond_2upd = T_R[ind_gb] <= T_A[ind_gb] && T_A[ind_gb] != inf && Vm_old > param_globals::dream.repol_time_thresh;
1466 
1467  if (cond_2upd) {
1468  double elapsed_time = 0;
1469  double prev_Vm = miif->ldata[i][limpet::Vm][current];
1470 
1471  do {
1472  elapsed_time += dt;
1473  pIF->compute(current, current + 1, miif->ldata[i]);
1474  miif->ldata[i][limpet::Vm][current] -= miif->ldata[i][limpet::Iion][current] * param_globals::dt;
1475  if (miif->ldata[i][limpet::Vm][current] < param_globals::dream.repol_time_thresh) {
1476  T_R[ind_gb] = time + elapsed_time;
1477  break;
1478  }
1479  } while (elapsed_time < 600);
1480 
1481  // Restore old states
1482  miif->ldata[i][limpet::Vm][current] = Vm_old;
1483  miif->ldata[i][limpet::Iion][current] = Iion_old;
1484  }
1485  current++;
1486  } while (current < miif->N_Nodes[i]);
1487  pIF->copy_SVs_from(*IIF_old, false);
1488  }
1489 
1490  #ifdef _OPENMP
1491  omp_set_num_threads(max_threads); // restore max threads for parabolic solver
1492  #endif
1493 
1494  // treat solver statistics
1495  auto dur = timing(t1, t0);
1496  stats.slvtime_D += dur;
1497 }
1498 
1500 {
1501  double t0, t1;
1502  get_time(t0);
1503 
1504  SF_real* c = Idiff->ptr();
1505  SF_real* v = vm.ptr();
1506 
1507  const sf_mesh& mesh = get_mesh(intra_elec_msh);
1508  const SF::vector<mesh_int_t>& alg_nod = mesh.pl.algebraic_nodes();
1509  int rank = get_rank();
1510 
1511  for (size_t j = 0; j < alg_nod.size(); j++) {
1512  mesh_int_t loc_nodal_idx = alg_nod[j];
1513  mesh_int_t loc_petsc_idx = local_nodal_to_local_petsc(mesh, rank, loc_nodal_idx);
1514 
1515  double TA = T_A[loc_nodal_idx];
1516  if (!(time >= TA && (TA + 5) >= time && List[loc_nodal_idx] == 0))
1517  continue;
1518 
1519  double dT = time - TA;
1520  auto& node = diff_cur[loc_nodal_idx];
1521 
1522  switch (node.model) {
1523  case GAUSS: {
1524  double term1 = (dT - node.beta_1) / node.gamma_1;
1525  double term2 = (dT - node.beta_2) / node.gamma_2;
1526  double term3 = (dT - node.beta_3) / node.gamma_3;
1527  c[loc_petsc_idx] = node.alpha_1 * exp(-term1 * term1) + node.alpha_2 * exp(-term2 * term2) + node.alpha_3 * exp(-term3 * term3);
1528  break;
1529  }
1530  default: {
1531  double e_on = (dT >= 0.0) ? 1.0 : 0.0;
1532  double e_off = (v[loc_petsc_idx] < node.V_th) ? 1.0 : 0.0;
1533  c[loc_petsc_idx] = node.A_F / node.tau_F * exp(dT / node.tau_F) * e_on * e_off;
1534  break;
1535  }
1536  }
1537  }
1538 
1539  Idiff->release_ptr(c);
1540  vm.release_ptr(v);
1541 
1542  stats.slvtime_B += timing(t1, t0);
1543 }
1544 
1545 void eikonal_solver::save_eikonal_state(const char* tsav_ext)
1546 {
1547  if (get_rank() == 0) {
1548  FILE* file_writestate;
1549  char buffer_writestate[1024];
1550  snprintf(buffer_writestate, sizeof buffer_writestate, "%s.%s.roe.dat", param_globals::write_statef, tsav_ext);
1551  file_writestate = fopen(buffer_writestate, "w");
1552  for (size_t jjj = 0; jjj < List.size(); jjj++) {
1553  fprintf(file_writestate, "%lld %lld %lld %f %f %f %f \n",
1554  static_cast<long long>(List[jjj]),
1555  static_cast<long long>(num_changes[jjj]),
1556  static_cast<long long>(nReadded2List[jjj]),
1557  T_A[jjj], T_R[jjj], TA_old[jjj], D_I[jjj]);
1558  }
1559 
1560  fclose(file_writestate);
1561  }
1562 }
1563 
1564 void eikonal_solver::load_state_file()
1565 {
1566  set_dir(INPUT);
1567  FILE* file_startstate;
1568  char buffer_startstate[strlen(param_globals::start_statef) + 10];
1569 
1570  snprintf(buffer_startstate, sizeof buffer_startstate, "%s.dat", param_globals::start_statef);
1571  file_startstate = fopen(buffer_startstate, "r");
1572 
1573  if (file_startstate == NULL) {
1574  log_msg(NULL, 5, 0, "Not able to open state file: %s", buffer_startstate);
1575  } else if (param_globals::output_level) {
1576  log_msg(NULL, 0, 0, "Open state file for eikonal model: %s", buffer_startstate);
1577  }
1578 
1579  int ListVal, numChangesVal, numChanges2Val;
1580  float T_AVal, T_RVal, TA_oldVal, D_IVal, PCLVal;
1581  int index = 0;
1582 
1583  while (fscanf(file_startstate, "%d %d %d %f %f %f %f", &ListVal, &numChangesVal, &numChanges2Val, &T_AVal, &T_RVal, &TA_oldVal, &D_IVal) == 7) {
1584  List[index] = ListVal;
1585  num_changes[index] = numChangesVal;
1586  nReadded2List[index] = numChanges2Val;
1587  T_A[index] = T_AVal;
1588  T_R[index] = T_RVal;
1589  TA_old[index] = TA_oldVal;
1590  D_I[index] = D_IVal;
1591  ++index;
1592  }
1593  if (param_globals::output_level) log_msg(NULL, 0, 0, "Number of nodes in active list: %i", sum(List));
1594 
1595  fclose(file_startstate);
1596 }
1597 
1599 {
1600  logger = f_open(filename, "w");
1601 
1602  const char* h1 = " ------ ---------- ---------- ------- ------- | List logic ----- -------- | Neighbor node ---- |";
1603  const char* h2 = " cycle AT old AT RT DI | Status Entry Exit | ID AT |";
1604 
1605  if (logger == NULL)
1606  log_msg(NULL, 3, 0, "%s error: Could not open file %s in %s. Turning off logging.\n",
1607  __func__, filename);
1608  else {
1609  log_msg(logger, 0, 0, "%s", h1);
1610  log_msg(logger, 0, 0, "%s", h2);
1611  }
1612 }
1613 
1614 void node_stats::log_stats(double time, bool cflg)
1615 {
1616  if (!this->logger) return;
1617 
1618  char abuf[256];
1619  char bbuf[256];
1620  char cbuf[256];
1621 
1622  // create nicer output in logger for inf, -inf, nan
1623  std::ostringstream oss_TA, oss_TA_, oss_TR, oss_DI, oss_nbnTA;
1624  oss_TA << this->T_A;
1625  oss_TA_ << this->T_A_;
1626  oss_TR << this->T_R;
1627  oss_DI << this->D_I;
1628  oss_nbnTA << this->nbn_T_A;
1629 
1630  if (this->idXNB == std::numeric_limits<Int>::min()) {
1631  snprintf(cbuf, sizeof cbuf, "%7s %10s", "-", "-");
1632  } else {
1633  snprintf(cbuf, sizeof cbuf, "%7lld %10s", static_cast<long long>(this->idXNB), oss_nbnTA.str().c_str());
1634  }
1635 
1636  snprintf(abuf, sizeof abuf, "%6lld %10s %10s %7s %7s",
1637  static_cast<long long>(this->cycle),
1638  oss_TA.str().c_str(), oss_TA_.str().c_str(), oss_TR.str().c_str(), oss_DI.str().c_str());
1639  snprintf(bbuf, sizeof bbuf, "%7s %8s %8s", this->status, this->reasonIn, this->reasonOut);
1640 
1641  unsigned char flag = cflg ? ECHO : 0;
1642  log_msg(this->logger, 0, flag | FLUSH | NONL, "%9.3f %s | %s | %s |\n", time, abuf, bbuf, cbuf);
1643 
1644  this->reasonIn = "-";
1645  this->reasonOut = "-";
1646  this->T_A_ = this->T_A;
1647  this->T_A = std::numeric_limits<double>::quiet_NaN();
1648  this->T_R = std::numeric_limits<double>::quiet_NaN();
1649  this->D_I = std::numeric_limits<double>::quiet_NaN();
1651  this->nbn_T_A = std::numeric_limits<double>::quiet_NaN();
1652  this->cycle++;
1653 }
1654 
1656 {
1657  // directly convert enums to strings for logging
1658  const char* stat_str;
1659  const char* reas_str;
1660  switch (s) {
1661  case node_stats::in: stat_str = "in"; break;
1662  case node_stats::out: stat_str = "out"; break;
1663  }
1664 
1665  switch (r) {
1666  case node_stats::none: reas_str = "-"; break;
1667  case node_stats::nbn: reas_str = "nbn"; break;
1668  case node_stats::conv: reas_str = "conv"; break;
1669  case node_stats::stim: reas_str = "stim"; break;
1670  }
1671 
1672  this->status = stat_str;
1673  if (s == in) {
1674  this->reasonIn = reas_str;
1675  } else {
1676  this->reasonOut = reas_str;
1677  }
1678 }
1679 
1680 template<int MESH_SIZE>
1682  const SF::Point& x1 = points[0];
1683  const SF::Point& x2 = points[1];
1684 
1685  const double& u1 = values[0];
1686 
1687  if constexpr (MESH_SIZE == 2) {
1688  return tsitsiklis_update_line({x1,x2}, D, u1);
1689 
1690  } else if constexpr (MESH_SIZE == 3) {
1691  const SF::Point& x3 = points[2];
1692  const double& u2 = values[1];
1693  return tsitsiklis_update_triangle({x1,x2,x3}, D, {u1,u2});
1694 
1695  } else if constexpr (MESH_SIZE == 4) {
1696  const SF::Point& x3 = points[2];
1697  const SF::Point& x4 = points[3];
1698  const double& u2 = values[1];
1699  const double& u3 = values[2];
1700 
1701  double u_tet = tsitsiklis_update_tetra({x1,x2,x3,x4}, D, {u1,u2,u3});
1702  if (isnan(u_tet)) {
1703  u_tet = std::numeric_limits<double>::infinity();
1704  }
1705  // face calculations (contains edge update as fallback)
1706  double u_face1 = tsitsiklis_update_triangle({x1, x2, x4}, D, {u1, u2});
1707  double u_face2 = tsitsiklis_update_triangle({x1, x3, x4}, D, {u1, u3});
1708  double u_face3 = tsitsiklis_update_triangle({x2, x3, x4}, D, {u2, u3});
1709 
1710  double u_tri = std::min({u_face1, u_face2, u_face3});
1711  return std::min(u_tet, u_tri);
1712  }
1713 }
1714 
1715 template <int MESH_SIZE>
1716 double LocalSolver<MESH_SIZE>::tsitsiklis_update_line(const std::array<SF::Point, 2>& base,
1717  const SF::dmat<double>& D,
1718  const double& value)
1719 {
1720  // Compute the difference vector: a1 = x2 - x1
1721  SF::Point a1 = base[1] - base[0];
1722  // Return updated value at x2: u1 + norm
1723  return value + std::sqrt(SF::inner_prod(a1, D * a1));
1724 }
1725 
1726 template <int MESH_SIZE>
1727 double LocalSolver<MESH_SIZE>::tsitsiklis_update_triangle(const std::array<SF::Point, 3>& base,
1728  const SF::dmat<double>& D,
1729  const std::array<double, 2>& values)
1730 {
1731  const SF::Point& x1 = base[0];
1732  const SF::Point& x2 = base[1];
1733  const SF::Point& x3 = base[2];
1734  const double& u1 = values[0];
1735  const double& u2 = values[1];
1736  double result = std::numeric_limits<double>::infinity();
1737 
1738  SF::Point z1 = x1 - x2;
1739  SF::Point z2 = x2 - x3;
1740  double k = u1 - u2;
1741 
1742  // Squared Mahalanobis norms
1743  const SF::Point Dz1 = D * z1;
1744  const SF::Point Dz2 = D * z2;
1745  double p11 = SF::inner_prod(z1, Dz1);
1746  double p12 = SF::inner_prod(z1, Dz2);
1747  double p22 = SF::inner_prod(z2, Dz2);
1748 
1749  double denominator = p11 - k * k;
1750  double sqrt_val = (p11 * p22 - p12 * p12) / denominator;
1751 
1752  if (denominator > 1e-12) { // avoid dividing by zero or near zero -> k very small, likely due to collapsed triangle/coinciding points
1753  const double sqrt_val = (p11 * p22 - p12 * p12) / denominator;
1754  if (sqrt_val >= 0.0) { // only real solutions are considered
1755  const double rhs = k * std::sqrt(sqrt_val);
1756  double alpha1 = -(p12 + rhs) / p11;
1757  double alpha2 = -(p12 - rhs) / p11;
1758 
1759  alpha1 = std::clamp(alpha1, 0.0, 1.0);
1760  alpha2 = std::clamp(alpha2, 0.0, 1.0);
1761 
1762  for (double alpha : {alpha1, alpha2}) {
1763  SF::Point x_interp = x1 * alpha + x2 * (1.0 - alpha);
1764  SF::Point dist = x3 - x_interp;
1765  double norm_D = std::sqrt(SF::inner_prod(dist, D * dist));
1766  double u3 = alpha * u1 + (1.0 - alpha) * u2 + norm_D;
1767  result = std::min(result, u3);
1768  }
1769  }
1770  }
1771 
1772  // Fallback: point-based update if square root was invalid or denominator is too small
1773  double u_edge1 = tsitsiklis_update_line({x1,x3}, D, u1);
1774  double u_edge2 = tsitsiklis_update_line({x2,x3}, D, u2);
1775 
1776  return std::min({result, u_edge1, u_edge2});
1777 }
1778 
1779 template <int MESH_SIZE>
1780 double LocalSolver<MESH_SIZE>::tsitsiklis_update_tetra(const std::array<SF::Point, 4>& base,
1781  const SF::dmat<double>& D,
1782  const std::array<double, 3>& values)
1783 {
1784  const SF::Point& x1 = base[0];
1785  const SF::Point& x2 = base[1];
1786  const SF::Point& x3 = base[2];
1787  const SF::Point& x4 = base[3];
1788 
1789  const double& u1 = values[0];
1790  const double& u2 = values[1];
1791  const double& u3 = values[2];
1792 
1793  // edge vectors
1794  const SF::Point y1 = x3 - x1;
1795  const SF::Point y2 = x3 - x2;
1796  const SF::Point y3 = x4 - x3;
1797 
1798  const double k1 = u1 - u3;
1799  const double k2 = u2 - u3;
1800 
1801  // Matrix products (squared norms and dot products under metric D)
1802  const SF::Point Dy1 = D * y1;
1803  const SF::Point Dy2 = D * y2;
1804  const SF::Point Dy3 = D * y3;
1805  const double r11 = SF::inner_prod(y1, Dy1);
1806  const double r12 = SF::inner_prod(y1, Dy2);
1807  const double r13 = SF::inner_prod(y1, Dy3);
1808  const double r21 = r12;
1809  const double r22 = SF::inner_prod(y2, Dy2);
1810  const double r23 = SF::inner_prod(y2, Dy3);
1811  const double r31 = r13;
1812  const double r32 = r23;
1813 
1814  const double A1 = k2 * r11 - k1 * r12;
1815  const double A2 = k2 * r21 - k1 * r22;
1816  const double B = k2 * r31 - k1 * r32;
1817  const double k = k1 - (A1 / A2) * k2;
1818  const SF::Point z1 = y1 - (A1 / A2) * y2;
1819  const SF::Point z2 = y3 - (B / A2) * y2;
1820 
1821  // compute quadratic equation
1822  const SF::Point Dz1 = D * z1;
1823  const SF::Point Dz2 = D * z2;
1824  const double p11 = SF::inner_prod(z1, Dz1);
1825  const double p12 = SF::inner_prod(z1, Dz2);
1826  const double p22 = SF::inner_prod(z2, Dz2);
1827  const double denominator = p11 - k*k;
1828  const double sqrt_val = (p11 * p22 - (p12 * p12)) / denominator;
1829  const double rhs = k * std::sqrt(sqrt_val);
1830 
1831  double alpha1 = -(p12 + rhs) / p11;
1832  double alpha2 = -(B + alpha1 * A1) / A2;
1833 
1834  // handle degenerate cases
1835  const double EPS = 1e-16;
1836  if ((std::abs(A1) < EPS) && (std::abs(A2) < EPS)) {
1837  alpha1 = (r12 * r23 - r13 * r22) / (r11 * r22 - (r12 * r12));
1838  alpha2 = (r12 * r13 - r11 * r23) / (r11 * r22 - (r12 * r12));
1839  } else if ((std::abs(A1) < EPS) && (std::abs(A2) > EPS)) {
1840  alpha1 = 0;
1841  alpha2 = -B / A2;
1842  } else if ((std::abs(A1) > EPS) && (std::abs(A2) < EPS)) {
1843  alpha1 = -B / A1;
1844  alpha2 = 0;
1845  }
1846 
1847  double alpha3 = 1 - alpha1 - alpha2;
1848  const SF::Point dist = x4 - (alpha1 * x1 + alpha2 * x2 + alpha3 * x3);
1849  // barycentric coordinate should be inside the tetrahedron
1850  if (alpha1 < -EPS || alpha2 < -EPS || alpha3 < -EPS ||
1851  alpha1 > 1.0+EPS || alpha2 > 1.0+EPS || alpha3 > 1.0+EPS) {
1852  return std::numeric_limits<double>::infinity();
1853  } else {
1854  return alpha1 * u1 + alpha2 * u2 + alpha3 * u3 + std::sqrt(SF::inner_prod(dist, D * dist));
1855  }
1856 }
1857 
1858 } // namespace opencarp
void output(vector< int > nodes, IGBheader *h, char *ofname, enum_format of, int t0, int t1, int stride, bool explode, float scale)
Definition: IGBextract.cc:210
opencarp::local_index_t mesh_int_t
Definition: SF_container.h:31
opencarp::real_t SF_real
Global scalar type.
Definition: SF_globals.h:18
Basic utility structs and functions, mostly IO related.
#define FLUSH
Definition: basics.h:304
#define ECHO
Definition: basics.h:301
#define NONL
Definition: basics.h:305
virtual void write(const char *filename) const =0
virtual S * ptr()=0
virtual void release_ptr(S *&p)=0
virtual void add_scaled(const abstract_vector< T, S > &vec, S k)=0
overlapping_layout< T > pl
nodal parallel layout
Definition: SF_container.h:414
vector< T > dsp
connectivity starting index of each element
Definition: SF_container.h:401
vector< S > she
sheet direction
Definition: SF_container.h:406
vector< elem_t > type
element type
Definition: SF_container.h:403
vector< T > con
Definition: SF_container.h:397
size_t l_numpts
local number of points
Definition: SF_container.h:386
size_t size() const
The current size of the vector.
Definition: SF_vector.h:89
void resize(size_t n)
Resize a vector.
Definition: SF_vector.h:194
const T * end() const
Pointer to the vector's end.
Definition: SF_vector.h:113
void assign(InputIterator s, InputIterator e)
Assign a memory range.
Definition: SF_vector.h:146
void reserve(size_t n)
Definition: SF_vector.h:226
const T * begin() const
Pointer to the vector's start.
Definition: SF_vector.h:101
T * data()
Pointer to the vector's start.
Definition: SF_vector.h:76
T & push_back(T val)
Definition: SF_vector.h:268
Represents the ionic model and plug-in (IMP) data structure.
Definition: ION_IF.h:168
const IonType & get_type() const
Gets this IMP's model type.
Definition: ION_IF.cc:134
virtual void copy_SVs_from(IonIfBase &other, bool alloc)=0
Copies the state variables of an IMP.
void compute(node_index_t start, node_index_t end, GlobalData_t **data)
Perform ionic model computation for 1 time step.
Definition: ION_IF.cc:258
Target get_target() const
Definition: ION_IF.h:381
node_count_t get_num_node() const
Gets the number of nodes handled by this IMP.
Definition: ION_IF.cc:138
virtual IonIfBase * make_ion_if(Target target, node_count_t num_node, const std::vector< std::reference_wrapper< IonType >> &plugins) const =0
Generate an IonIf object from this type.
std::vector< IonIfBase * > IIF
array of IIF's
Definition: MULTI_ION_IF.h:198
opencarp::sf_vec * gdata[NUM_IMP_DATA_TYPES]
data used by all IMPs
Definition: MULTI_ION_IF.h:212
std::vector< IonTypeList > plugtypes
plugins types for each region
Definition: MULTI_ION_IF.h:211
void dump_state(char *, float, opencarp::mesh_t gid, bool, unsigned int)
GlobalData_t *** ldata
data local to each IMP
Definition: MULTI_ION_IF.h:201
int N_IIF
how many different IIF's
Definition: MULTI_ION_IF.h:207
node_count_t * N_Nodes
#nodes for each IMP
Definition: MULTI_ION_IF.h:196
node_index_t ** NodeLists
local partitioned node lists for each IMP stored
Definition: MULTI_ION_IF.h:197
int timer_idx
the timer index received from the timer manager
Definition: physics_types.h:51
FILE_SPEC logger
The logger of the physic, each physic should have one.
Definition: physics_types.h:49
const char * name
The name of the physic, each physic should have one.
Definition: physics_types.h:47
std::string timer_unit(const int timer_id)
figure out units of a signal linked to a given timer
SF::vector< stimulus > stimuli
the electrical stimuli
parabolic_solver parab_solver
Solver for the parabolic bidomain equation.
MaterialType mtype[2]
the material types of intra_grid and extra_grid grids.
void destroy()
Currently we only need to close the file logger.
double timer_val(const int timer_id)
figure out current value of a signal linked to a given timer
sf_vec * phie_dummy
no elliptic solver needed, but we need a dummy for phie to use parabolic solver
eikonal_solver eik_solver
Solver for the eikonal equation.
LAT_detector lat
the activation time detector
gvec_data gvec
datastruct holding global IMP state variable output
generic_timing_stats IO_stats
grid_t
An electrics grid identifier to distinguish between intra and extra grids.
igb_output_manager output_manager_cycle
void initialize()
Initialize the Eikonal class.
igb_output_manager output_manager_time
class handling the igb output
limpet::MULTI_IF * miif
Definition: ionics.h:52
void compute_step()
Definition: ionics.cc:20
void initialize()
Definition: ionics.cc:45
void destroy()
Definition: ionics.cc:37
int check_quiescence(double tm, double dt)
check for quiescence
Definition: electrics.cc:1790
void output_initial_activations()
output one nodal vector of initial activation time
Definition: electrics.cc:1905
void init(sf_vec &vm, sf_vec &phie, int offset, enum physic_t=elec_phys)
initializes all datastructs after electric solver setup
Definition: electrics.cc:1599
int check_acts(double tm)
check activations at sim time tm
Definition: electrics.cc:1722
void FIM()
Standard fast iterative method to solve eikonal equation with active list approach.
void update_repolarization_times_from_rd(sf_vec &Vmv, sf_vec &Vmv_old, double time)
Updates node repolarization times based on transmembrane voltage crossing.
SF::vector< SF_real > T_R
void init_imp_region_properties()
Initializes diffusion current models and CV restitution parameters per mesh node.
SF::vector< mesh_int_t > n2e_dsp
SF::vector< SF_real > T_A
SF::vector< SF_real > TA_old
SF::vector< diffusion_current > diff_cur
void init()
Initialize vectors and variables in the eikonal_solver class.
SF::vector< mesh_int_t > e2n_con
bool determine_model_to_run(double &time)
Determine the next model to run in the alternation between RD and Eikonal.
SF::vector< mesh_int_t > stim_status
SF::vector< mesh_int_t > elem_start
SF::vector< mesh_int_t > StimulusPoints
SF::vector< SF_real > rho_cvrest
std::vector< double > CV_L
void save_eikonal_state(const char *tsav_ext)
Save the current state of variables related to the Eikonal simulation to a file to initialize a futur...
SF::vector< SF_real > denom_cvrest
void compute_diffusion_current(const double &time, sf_vec &vm)
Computes the stimulus-driven diffusion current at mesh nodes.
std::vector< mesh_int_t > n2n_connect
void set_stimuli(SF::vector< stimulus > &stimuli)
Simple setter for stimulus vector.
SF::vector< mesh_int_t > e2n_cnt
SF::vector< mesh_int_t > n2e_con
void clean_list()
Clean the list of nodes by resetting their status and tracking changes based on the time step of the ...
SF::vector< SF_real > D_I
SF::vector< mesh_int_t > nReadded2List
SF::vector< SF_real > theta_cvrest
SF::vector< mesh_int_t > num_changes
std::vector< mesh_int_t > n2n_dsp
SF::vector< SF_real > StimulusTimes
SF::vector< SF_real > kappa_cvrest
SF::vector< mesh_int_t > n2e_cnt
void cycFIM()
Implementation of the cyclical fast iterative method used in step A of the DREAM model.
void update_repolarization_times(const Ionics &ion)
Estimates initial repolarization times (T_R) in Step D of DREAM.
eikonal_solver_stats stats
std::vector< SF::dmat< double > > S
void write_data()
write registered data to disk
Definition: sim_utils.cc:2883
void close_files_and_cleanup()
close file descriptors
Definition: sim_utils.cc:2939
void register_output(sf_vec *inp_data, const mesh_t inp_meshid, const int dpn, const char *name, const char *units, const SF::vector< mesh_int_t > *idx=NULL, bool elem_data=false)
Register a data vector for output.
Definition: sim_utils.cc:2850
sf_mat * rhs_parab
rhs matrix to solve parabolic
Definition: electrics.h:104
lin_solver_stats stats
Definition: electrics.h:114
void rebuild_matrices(MaterialType *mtype, limpet::MULTI_IF &miif, FILE_SPEC logger)
Definition: electrics.cc:1246
void solve(sf_vec &phie_i)
Definition: electrics.cc:1360
sf_mat * mass_i
lumped for parabolic problem
Definition: electrics.h:103
sf_mat * lhs_parab
lhs matrix (CN) to solve parabolic
Definition: electrics.h:105
sf_vec * Vmv
global Vm vector
Definition: electrics.h:89
sf_vec * old_vm
older Vm needed for 2nd order dT
Definition: electrics.h:95
int write_trace()
write traces to file
Definition: signals.h:686
stim_t type
type of stimulus
Definition: stimulate.h:123
int npls
number of stimulus pulses
Definition: stimulate.h:106
double pcl
pacing cycle length
Definition: stimulate.h:107
double start
start time of protocol
Definition: stimulate.h:105
sig::time_trace wave
wave form of stimulus pulse
Definition: stimulate.h:83
stim_protocol ptcl
applied stimulation protocol used
Definition: stimulate.h:154
stim_electrode electrode
electrode geometry
Definition: stimulate.h:156
stim_pulse pulse
stimulus wave form
Definition: stimulate.h:153
void translate(int id)
convert legacy definitions to new format
Definition: stimulate.cc:92
bool is_active() const
Return whether stim is active.
Definition: stimulate.cc:185
void setup(int idx)
Setup from a param stimulus index.
Definition: stimulate.cc:153
void dump_vtx_file(int idx)
Export the vertices to vtx file.
Definition: stimulate.cc:457
stim_physics phys
physics of stimulus
Definition: stimulate.h:155
std::string name
label stimulus
Definition: stimulate.h:151
double time_step
global reference time step
Definition: timer_utils.h:64
int add_eq_timer(double istart, double iend, int ntrig, double iintv, double idur, const char *iname, const char *poolname=nullptr)
Add a equidistant step timer to the array of timers.
Definition: timer_utils.cc:63
double time
current time
Definition: timer_utils.h:62
Diffusion Reaction Eikonal Alternant Model (DREAM) based on the electrics physics class.
void transpose_connectivity(const vector< T > &a_cnt, const vector< T > &a_con, vector< T > &b_cnt, vector< T > &b_con)
Transpose CRS matrix graph A into B.
double inner_prod(const Point &a, const Point &b)
Definition: SF_container.h:75
T sum(const vector< T > &vec)
Compute sum of a vector's entries.
Definition: SF_vector.h:325
void count(const vector< T > &data, vector< S > &cnt)
Count number of occurrences of indices.
Definition: SF_vector.h:317
void outer_prod(const Point &a, const Point &b, const double s, double *buff, const bool add=false)
Definition: SF_container.h:80
T local_nodal_to_local_petsc(const meshdata< T, S > &mesh, int rank, T local_nodal)
void init_vector(SF::abstract_vector< T, S > **vec)
Definition: SF_init.h:110
V clamp(const V val, const W start, const W end)
Clamp a value into an interval [start, end].
Definition: kdpart.hpp:117
void cnt_from_dsp(const std::vector< T > &dsp, std::vector< T > &cnt)
Compute counts from displacements.
Definition: kdpart.hpp:134
void dsp_from_cnt(const std::vector< T > &cnt, std::vector< T > &dsp)
Compute displacements from counts.
Definition: kdpart.hpp:125
constexpr T min(T a, T b)
Definition: ion_type.h:18
void dump_trace(MULTI_IF *MIIF, limpet::Real time)
void open_trace(MULTI_IF *MIIF, int n_traceNodes, int *traceNodes, int *label, opencarp::sf_mesh *imesh)
Set up ionic model traces at some global node numbers.
timer_manager * tm_manager
a manager for the various physics timers
Definition: main.cc:40
bool using_legacy_stimuli
flag storing whether legacy stimuli are used
Definition: main.cc:46
int stimidx_from_timeridx(const SF::vector< stimulus > &stimuli, const int timer_id)
determine link between timer and stimulus
Definition: electrics.cc:842
@ iotm_chkpt_list
Definition: timer_utils.h:29
@ iotm_console
Definition: timer_utils.h:29
@ iotm_trace
Definition: timer_utils.h:29
@ iotm_chkpt_intv
Definition: timer_utils.h:29
SF::scattering * get_scattering(const int from, const int to, const SF::SF_nbr nbr, const int dpn)
Get a scattering from the global scatter registry.
void read_el_scale_vec(const char *file, mesh_t mt, SF::vector< double > &el_scale, int &el_scale_dpn)
sf_mesh & get_mesh(const mesh_t gt)
Get a mesh by specifying the gridID.
Definition: sf_interface.cc:18
SF::scattering * register_scattering(const int from, const int to, const SF::SF_nbr nbr, const int dpn)
Register a scattering between to grids, or between algebraic and nodal representation of data on the ...
Definition: sf_interface.cc:54
SF::scattering * get_permutation(const int mesh_id, const int perm_id, const int dpn)
Get the PETSC to canonical permutation scattering for a given mesh and number of dpn.
void region_mask(mesh_t meshspec, SF::vector< RegionSpecs > &regspec, SF::vector< int > &regionIDs, bool mask_elem, const char *reglist, bool warn_on_default_tags)
classify elements/points as belonging to a region
Definition: ionics.cc:391
SF::meshdata< mesh_int_t, mesh_real_t > sf_mesh
Definition: sf_interface.h:33
void apply_stim_to_vector(const stimulus &s, sf_vec &vec, bool add)
Definition: electrics.cc:438
int set_dir(IO_t dest)
Definition: sim_utils.cc:1615
vec3< V > cross(const vec3< V > &a, const vec3< V > &b)
Definition: vect.h:129
int get_rank(MPI_Comm comm=PETSC_COMM_WORLD)
Definition: basics.h:269
V dist(const vec3< V > &p1, const vec3< V > &p2)
Definition: vect.h:99
@ Vm_clmp
Definition: stimulate.h:64
void init_stim_info(void)
uses potential for stimulation
Definition: stimulate.cc:34
FILE_SPEC f_open(const char *fname, const char *mode)
Open a FILE_SPEC.
Definition: basics.cc:123
SF::scattering * register_permutation(const int mesh_id, const int perm_id, const int dpn)
Register a permutation between two orderings for a mesh.
@ OUTPUT
Definition: sim_utils.h:39
void init_sv_gvec(gvec_data &GVs, limpet::MULTI_IF *miif, sf_vec &tmpl, igb_output_manager &output_manager)
Definition: ionics.cc:600
void assemble_sv_gvec(gvec_data &gvecs, limpet::MULTI_IF *miif)
Definition: ionics.cc:671
char * dupstr(const char *old_str)
Definition: basics.cc:29
void log_msg(FILE_SPEC out, int level, unsigned char flag, const char *fmt,...)
Definition: basics.cc:57
mesh_t
The enum identifying the different meshes we might want to load.
Definition: sf_interface.h:44
@ extra_elec_msh
Definition: sf_interface.h:46
@ intra_elec_msh
Definition: sf_interface.h:45
void get_time(double &tm)
Definition: basics.h:429
bool mesh_is_registered(const mesh_t gt)
check wheter a SF mesh is set
Definition: sf_interface.cc:48
SF::abstract_vector< SF_int, SF_real > sf_vec
Definition: sf_interface.h:35
int get_size(MPI_Comm comm=PETSC_COMM_WORLD)
Definition: basics.h:283
void setup_dataout(const int dataout, std::string dataout_vtx, mesh_t grid, SF::vector< mesh_int_t > *&restr, bool async, const hashmap::unordered_set< int > *output_tags)
Definition: electrics.cc:598
const char * get_tsav_ext(double time)
Definition: electrics.cc:928
V timing(V &t2, const V &t1)
Definition: basics.h:441
void f_close(FILE_SPEC &f)
Close a FILE_SPEC.
Definition: basics.cc:150
@ ElecMat
Definition: fem_types.h:24
#define PETSC_TO_CANONICAL
Permute algebraic data from PETSC to canonical ordering.
Definition: sf_interface.h:64
#define ALG_TO_NODAL
Scatter algebraic to nodal.
Definition: sf_interface.h:62
#define EXP_POSTPROCESS
Definition: sim_utils.h:192
Electrical stimulation functions.
Point and vector struct.
Definition: SF_container.h:50
double y
Definition: SF_container.h:52
double z
Definition: SF_container.h:53
double x
Definition: SF_container.h:51
description of materal properties in a mesh
Definition: fem_types.h:106
SF::vector< RegionSpecs > regions
array with region params
Definition: fem_types.h:111
SF::vector< double > el_scale
optionally provided per-element params scale
Definition: fem_types.h:112
int el_scale_dpn
0=disabled, 1=isotropic scalar, 3=anisotropic (sl, st, sn) per element
Definition: fem_types.h:113
region based variations of arbitrary material parameters
Definition: fem_types.h:78
physMaterial * material
material parameter description
Definition: fem_types.h:83
int nsubregs
#subregions forming this region
Definition: fem_types.h:81
int * subregtags
FEM tags forming this region.
Definition: fem_types.h:82
char * regname
name of region
Definition: fem_types.h:79
int regID
region ID
Definition: fem_types.h:80
double slvtime_A
total time in Step A
Definition: timers.h:48
void log_stats(double time, bool cflg)
Definition: timers.cc:133
double minAT
minimum activation time in current solve
Definition: timers.h:43
double maxAT
maximum activation time in current solve
Definition: timers.h:45
void init_logger(const char *filename)
Definition: timers.cc:117
int activeList
number of nodes currently in list
Definition: timers.h:41
void update_iter(const int curiter)
Definition: timers.cc:165
double slvtime_B
total time in Step B
Definition: timers.h:50
double slvtime_D
total time in Step D
Definition: timers.h:52
bool bc_status
boundary conditions were applied?
Definition: timers.h:56
void update_cli(double time, bool cflg)
Definition: timers.cc:171
File descriptor struct.
Definition: basics.h:120
void log_stats(double tm, bool cflg)
Definition: timers.cc:96
void init_logger(const char *filename)
Definition: timers.cc:80
int calls
# calls for this interval, this is incremented externally
Definition: timers.h:73
double tot_time
total time, this is incremented externally
Definition: timers.h:75
void log_stats(double tm, bool cflg)
Definition: timers.cc:30
const char * reasonOut
reason for list entry
SF_real T_R
repolarization time
void init_logger(const char *filename)
void log_stats(double tm, bool cflg)
SF_real D_I
diastolic interval
mesh_int_t idXNB
neighboring node index responsible for list entry
const char * reasonIn
reason for list entry
SF_real T_A_
previous activation time
SF_real T_A
current activation time
SF_real nbn_T_A
activation time of neighboring node
mesh_int_t cycle
DREAM cycle.
mesh_int_t idX
node index
void update_status(enum status s, enum reason r)