aboutsummaryrefslogtreecommitdiff
path: root/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H')
-rw-r--r--Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H84
1 files changed, 0 insertions, 84 deletions
diff --git a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H b/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H
deleted file mode 100644
index 95f65923e..000000000
--- a/Source/Particles/ElementaryProcess/QEDInternals/BreitWheelerDummyTable.H
+++ /dev/null
@@ -1,84 +0,0 @@
-/* Copyright 2019 Luca Fedeli
- *
- * This file is part of WarpX.
- *
- * License: BSD-3-Clause-LBNL
- */
-#ifndef WARPX_breit_wheeler_dummy_tables_h_
-#define WARPX_breit_wheeler_dummy_tables_h_
-
-#include "BreitWheelerEngineInnards.H"
-
-#include <AMReX_REAL.H>
-
-#include <limits>
-#include <vector>
-
-namespace QedUtils{
-
-//A default mini-table used for test purposes
-const struct //BreitWheelerEngineInnardsDummy
-{
- picsar::multi_physics::breit_wheeler_engine_ctrl<amrex::Real> ctrl{
- 0.001, /*chi_phot_min*/
- 0.1, /*chi_phot_tdndt_min*/
- 200, /*chi_phot_tdndt_max*/
- 64, /*chi_phot_tdndt_how_many*/
- 0.01, /*chi_phot_tpair_min*/
- 200, /*chi_phot_tpair_max*/
- 2, /*chi_phot_tpair_how_many*/
- 2 /*chi_frac_tpair_how_many*/
- };
- std::vector<amrex::Real> TTfunc_coords{
- -2.302585093, -2.181935848, -2.061286602, -1.940637357,
- -1.819988111, -1.699338866, -1.578689621, -1.458040375,
- -1.33739113, -1.216741884, -1.096092639, -0.9754433937,
- -0.8547941483, -0.7341449029, -0.6134956575, -0.4928464122,
- -0.3721971668, -0.2515479214, -0.130898676, -0.01024943059,
- 0.1103998148, 0.2310490602, 0.3516983056, 0.472347551,
- 0.5929967964, 0.7136460417, 0.8342952871, 0.9549445325,
- 1.075593778, 1.196243023, 1.316892269, 1.437541514,
- 1.558190759, 1.678840005, 1.79948925, 1.920138496,
- 2.040787741, 2.161436986, 2.282086232, 2.402735477,
- 2.523384723, 2.644033968, 2.764683213, 2.885332459,
- 3.005981704, 3.12663095, 3.247280195, 3.36792944,
- 3.488578686, 3.609227931, 3.729877176, 3.850526422,
- 3.971175667, 4.091824913, 4.212474158, 4.333123403,
- 4.453772649, 4.574421894, 4.69507114, 4.815720385,
- 4.93636963, 5.057018876, 5.177668121, 5.298317367
- };
- std::vector<amrex::Real> TTfunc_data{
- -32.75941722, -29.48929687, -26.5638705, -23.94401054,
- -21.59504068, -19.48623016, -17.59034545, -15.88325289,
- -14.34356639, -12.95233518, -11.69276696, -10.54998244,
- -9.510797773, -8.563531596, -7.697833953, -6.90453462,
- -6.175508601, -5.503556869, -4.882300625, -4.306087546,
- -3.76990867, -3.269324729, -2.800400851, -2.359648711,
- -1.943975268, -1.550637379, -1.177201596, -0.8215085915,
- -0.4816416657, -0.1558988919, 0.1572315255, 0.4590930403,
- 0.7508800304, 1.033654828, 1.308362775, 1.575845526,
- 1.836852816, 2.092052851, 2.342041503, 2.587350441,
- 2.828454313, 3.065777115, 3.299697807, 3.530555306,
- 3.758652908, 3.984262221, 4.207626639, 4.428964367,
- 4.648471027, 4.866321957, 5.082674363, 5.297669484,
- 5.511434783, 5.724086013, 5.935728862, 6.146459973,
- 6.356367276, 6.565529804, 6.774017335, 6.981890203,
- 7.189199547, 7.395988084, 7.602291337, 7.808139168
- };
- std::vector<amrex::Real> cum_distrib_coords_1{
- -4.605170186, 5.298317367
- };//_____________________________
- std::vector<amrex::Real> cum_distrib_coords_2{
- 0, 0.5
- };//_____________________________
- std::vector<amrex::Real> cum_distrib_data{
- -std::numeric_limits<amrex::Real>::infinity(),
- -0.6931471806,
- -std::numeric_limits<amrex::Real>::infinity(),
- -0.6931471806
- };//_____________________________
-} BreitWheelerEngineInnardsDummy;
-
-};
-
-#endif // WARPX_breit_wheeler_dummy_tables_h_