WarpX
Loading...
Searching...
No Matches
ElasticCollisionPerez.H
Go to the documentation of this file.
1/* Copyright 2019 Yinjian Zhao
2 *
3 * This file is part of WarpX.
4 *
5 * License: BSD-3-Clause-LBNL
6 */
7#ifndef WARPX_PARTICLES_COLLISION_ELASTIC_COLLISION_PEREZ_H_
8#define WARPX_PARTICLES_COLLISION_ELASTIC_COLLISION_PEREZ_H_
9
12#include "Utils/WarpXConst.H"
13
14#include <AMReX_Random.H>
15
16
41
42template <typename T_index, typename T_PR, typename T_R, typename SoaData_type>
45 T_index const I1s, T_index const I1e,
46 T_index const I2s, T_index const I2e,
47 T_index const* AMREX_RESTRICT I1,
48 T_index const* AMREX_RESTRICT I2,
49 SoaData_type soa_1, SoaData_type soa_2,
50 T_PR const n1, T_PR const n2,
51 T_PR const T1, T_PR const T2,
52 T_PR const q1, T_PR const q2,
53 T_PR const m1, T_PR const m2,
54 T_R const dt, T_R const global_lamdb, T_PR const L, T_R const dV,
55 amrex::RandomEngine const& engine,
56 bool const isSameSpecies, T_index coll_idx)
57{
58 const T_index NI1 = I1e - I1s;
59 const T_index NI2 = I2e - I2s;
60 const T_index max_N = amrex::max(NI1,NI2);
61 const T_index min_N = amrex::min(NI1,NI2);
62
63 T_PR * const AMREX_RESTRICT w1 = soa_1.m_rdata[PIdx::w];
64 T_PR * const AMREX_RESTRICT u1x = soa_1.m_rdata[PIdx::ux];
65 T_PR * const AMREX_RESTRICT u1y = soa_1.m_rdata[PIdx::uy];
66 T_PR * const AMREX_RESTRICT u1z = soa_1.m_rdata[PIdx::uz];
67
68 T_PR * const AMREX_RESTRICT w2 = soa_2.m_rdata[PIdx::w];
69 T_PR * const AMREX_RESTRICT u2x = soa_2.m_rdata[PIdx::ux];
70 T_PR * const AMREX_RESTRICT u2y = soa_2.m_rdata[PIdx::uy];
71 T_PR * const AMREX_RESTRICT u2z = soa_2.m_rdata[PIdx::uz];
72
73 // compute Debye length lmdD (if not using a fixed L = Coulomb log)
74 T_PR lmdD = T_PR(-1.0);
75 if ( L <= T_PR(0.0) ) {
76 if (global_lamdb <= T_PR(0.0)) {
77 lmdD = T_PR(1.0)/std::sqrt( n1*q1*q1/(T1*PhysConst::epsilon_0) +
78 n2*q2*q2/(T2*PhysConst::epsilon_0) );
79 } else {
80 lmdD = global_lamdb;
81 }
82 }
83
84 // compute atomic spacing
85 const T_PR maxn = amrex::max(n1,n2);
86 const auto rmin = static_cast<T_PR>( 1.0/std::cbrt(4.0*MathConst::pi/3.0*maxn) );
87
88 // bmax (screening length) cannot be smaller than atomic spacing
89 const T_PR bmax = amrex::max(lmdD, rmin);
90
91 // set max cross section based on mfp = atomic spacing
92 const T_PR sigma_max = T_PR(1.0) / (maxn * rmin);
93
94#if (defined WARPX_DIM_RZ)
95 T_PR * const AMREX_RESTRICT theta1 = soa_1.m_rdata[PIdx::theta];
96 T_PR * const AMREX_RESTRICT theta2 = soa_2.m_rdata[PIdx::theta];
97#endif
98
99 // call UpdateMomentumPerezElastic()
100 {
101 T_index i1 = I1s + coll_idx;
102 T_index i2 = I2s + coll_idx;
103
104 // we will start from collision number = coll_idx and then add
105 // stride (smaller set size) until we do all collisions (larger set size)
106 for (T_index k = coll_idx; k < max_N; k += min_N)
107 {
108#if (defined WARPX_DIM_RZ)
109 /* In RZ geometry, macroparticles can collide with other macroparticles
110 * in the same *cylindrical* cell. For this reason, collisions between macroparticles
111 * are actually not local in space. In this case, the underlying assumption is that
112 * particles within the same cylindrical cell represent a cylindrically-symmetry
113 * momentum distribution function. Therefore, here, we temporarily rotate the
114 * momentum of one of the macroparticles in agreement with this cylindrical symmetry.
115 * (This is technically only valid if we use only the m=0 azimuthal mode in the simulation;
116 * there is a corresponding assert statement at initialization.) */
117 T_PR const theta = theta2[I2[i2]]-theta1[I1[i1]];
118 T_PR const u1xbuf = u1x[I1[i1]];
119 u1x[I1[i1]] = u1xbuf*std::cos(theta) - u1y[I1[i1]]*std::sin(theta);
120 u1y[I1[i1]] = u1xbuf*std::sin(theta) + u1y[I1[i1]]*std::cos(theta);
121#endif
122
123 // Compute the effective density n12 used to compute the normalized
124 // transport mean free path (s12) in UpdateMomentumPerezElastic().
125 // s12 is defined such that the expected value of the change in particle
126 // velocity is equal to that from the full NxN pairing method for each particle, as described in
127 // Justin Ray Angus, Yichen Fu, Vasily Geyko, Dave Grote, David Larson, JCP 531, 113927 (2025).
128 // This method is a direct extension of the original binary-pairing method for equally weighted
129 // particles by Takizuka and Abe JCP 25 (1977).
130 T_PR n12;
131 const T_PR wpmax = amrex::max(w1[ I1[i1] ],w2[ I2[i2] ]);
132 if (isSameSpecies) { n12 = wpmax*static_cast<T_PR>(min_N+max_N-1)/dV; }
133 else { n12 = wpmax*static_cast<T_PR>(min_N)/dV; }
134
136 u1x[ I1[i1] ], u1y[ I1[i1] ], u1z[ I1[i1] ],
137 u2x[ I2[i2] ], u2y[ I2[i2] ], u2z[ I2[i2] ],
138 q1, m1, w1[ I1[i1] ], q2, m2, w2[ I2[i2] ],
139 n12, sigma_max, L, bmax, dt, engine );
140
141#if (defined WARPX_DIM_RZ)
142 T_PR const u1xbuf_new = u1x[I1[i1]];
143 u1x[I1[i1]] = u1xbuf_new*std::cos(-theta) - u1y[I1[i1]]*std::sin(-theta);
144 u1y[I1[i1]] = u1xbuf_new*std::sin(-theta) + u1y[I1[i1]]*std::cos(-theta);
145#endif
146
147 if (max_N == NI1) {
148 i1 += min_N;
149 }
150 if (max_N == NI2) {
151 i2 += min_N;
152 }
153 }
154 }
155
156}
157
158#endif // WARPX_PARTICLES_COLLISION_ELASTIC_COLLISION_PEREZ_H_
#define AMREX_RESTRICT
#define AMREX_INLINE
#define AMREX_GPU_HOST_DEVICE
AMREX_GPU_HOST_DEVICE AMREX_INLINE void ElasticCollisionPerez(T_index const I1s, T_index const I1e, T_index const I2s, T_index const I2e, T_index const *AMREX_RESTRICT I1, T_index const *AMREX_RESTRICT I2, SoaData_type soa_1, SoaData_type soa_2, T_PR const n1, T_PR const n2, T_PR const T1, T_PR const T2, T_PR const q1, T_PR const q2, T_PR const m1, T_PR const m2, T_R const dt, T_R const global_lamdb, T_PR const L, T_R const dV, amrex::RandomEngine const &engine, bool const isSameSpecies, T_index coll_idx)
Definition ElasticCollisionPerez.H:44
AMREX_GPU_HOST_DEVICE AMREX_INLINE void UpdateMomentumPerezElastic(T_PR &u1x, T_PR &u1y, T_PR &u1z, T_PR &u2x, T_PR &u2y, T_PR &u2z, T_PR const q1, T_PR const m1, T_PR const w1, T_PR const q2, T_PR const m2, T_PR const w2, T_PR const n12, T_PR const sigma_max, T_PR const L, T_PR const bmax, T_R const dt, amrex::RandomEngine const &engine)
Definition UpdateMomentumPerezElastic.H:37
constexpr auto epsilon_0
vacuum permittivity: dielectric permittivity of vacuum [F/m]
Definition constant.H:152
constexpr auto pi
ratio of a circle's circumference to its diameter
Definition constant.H:29
__host__ __device__ constexpr const T & min(const T &a, const T &b) noexcept
__host__ __device__ constexpr const T & max(const T &a, const T &b) noexcept
@ uz
Definition WarpXParticleContainer.H:70
@ w
Definition WarpXParticleContainer.H:70
@ uy
Definition WarpXParticleContainer.H:70
@ ux
Definition WarpXParticleContainer.H:70