ImpactX
Loading...
Searching...
No Matches
Source.H
Go to the documentation of this file.
1/* Copyright 2022-2026 The Regents of the University of California, through Lawrence
2 * Berkeley National Laboratory (subject to receipt of any required
3 * approvals from the U.S. Dept. of Energy). All rights reserved.
4 *
5 * This file is part of ImpactX.
6 *
7 * Authors: Axel Huebl
8 * License: BSD-3-Clause-LBNL
9 */
10#ifndef IMPACTX_SOURCE_H
11#define IMPACTX_SOURCE_H
12
15#include "mixin/named.H"
16#include "mixin/nofinalize.H"
17#include "mixin/thin.H"
18
19#include <stdexcept>
20#include <string>
21
22namespace impactx::elements
23{
24 struct Source
25 : public mixin::Named,
26 public mixin::LinearTransport<Source>,
27 public mixin::Thin,
29 {
30 static constexpr auto type = "Source";
32
33 static constexpr bool DEFAULT_active_once = true;
34
43 std::string distribution,
44 std::string openpmd_path,
45 bool active_once = DEFAULT_active_once,
46 std::optional<std::string> name = DEFAULT_name
47 )
48 : Named(std::move(name)),
50 m_series_name(std::move(openpmd_path)),
51 m_active_once(active_once)
52 {
53 if (distribution != "openPMD") {
54 throw std::runtime_error("Only 'openPMD' distribution is supported if openpmd_path is provided!");
55 }
56 }
57
59 void reverse ()
60 {
61 throw std::runtime_error("Source: reverse() is not supported.");
62 }
63
72 void operator() (
74 [[maybe_unused]] int step,
75 int period
76 );
77
84 Map6x6
85 transport_map ([[maybe_unused]] RefPart const & AMREX_RESTRICT refpart) const
86 {
87 // nothing to do
88 return Map6x6::Identity();
89 }
90
92 using Thin::operator();
93
95 using LinearTransport::operator();
96
97 std::string m_distribution;
98 std::string m_series_name;
99 bool m_active_once = true;
100 };
101
102} // namespace impactx
103
104#endif // IMPACTX_SOURCE_H
#define AMREX_FORCE_INLINE
#define AMREX_RESTRICT
#define AMREX_GPU_HOST
Definition ImpactXParticleContainer.H:136
Definition All.H:28
Definition All.H:55
amrex::SmallMatrix< amrex::ParticleReal, 6, 6, amrex::Order::F, 1 > Map6x6
Definition CovarianceMatrix.H:20
static constexpr __host__ __device__ SmallMatrix< T, NRows, NCols, ORDER, StartIndex > Identity() noexcept
Definition ReferenceParticle.H:33
void operator()(ImpactXParticleContainer &pc, int step, int period)
Definition Source.cpp:26
Source(std::string distribution, std::string openpmd_path, bool active_once=DEFAULT_active_once, std::optional< std::string > name=DEFAULT_name)
Definition Source.H:42
std::string m_distribution
Definition Source.H:97
static constexpr auto type
Definition Source.H:30
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition Source.H:85
bool m_active_once
openPMD filename
Definition Source.H:99
void reverse()
Definition Source.H:59
std::string m_series_name
Distribution type of particles in the source.
Definition Source.H:98
ImpactXParticleContainer::ParticleType PType
Definition Source.H:31
static constexpr bool DEFAULT_active_once
Definition Source.H:33
Definition lineartransport.H:50
Definition named.H:29
static constexpr std::nullopt_t DEFAULT_name
Definition named.H:30
AMREX_GPU_HOST Named(std::optional< std::string > name)
Definition named.H:59
AMREX_FORCE_INLINE std::string name() const
Definition named.H:124
Definition nofinalize.H:22
Definition thin.H:24