ImpactX
Loading...
Searching...
No Matches
Source.H
Go to the documentation of this file.
1/* Copyright 2022-2025 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
22
23namespace impactx::elements
24{
25 struct Source
26 : public mixin::Named,
27 public mixin::LinearTransport<Source>,
28 public mixin::Thin,
30 {
31 static constexpr auto type = "Source";
33
42 std::string distribution,
43 std::string openpmd_path,
44 bool active_once = true,
45 std::optional<std::string> name = std::nullopt
46 )
47 : Named(std::move(name)),
49 m_series_name(std::move(openpmd_path)),
50 m_active_once(active_once)
51 {
52 if (distribution != "openPMD") {
53 throw std::runtime_error("Only 'openPMD' distribution is supported if openpmd_path is provided!");
54 }
55 }
56
58 void reverse ()
59 {
60 throw std::runtime_error("Source: reverse() is not supported.");
61 }
62
71 void operator() (
73 [[maybe_unused]] int step,
74 int period
75 );
76
83 Map6x6
84 transport_map ([[maybe_unused]] RefPart const & AMREX_RESTRICT refpart) const
85 {
86 // nothing to do
87 return Map6x6::Identity();
88 }
89
91 using Thin::operator();
92
94 using LinearTransport::operator();
95
96 std::string m_distribution;
97 std::string m_series_name;
98 bool m_active_once = true;
99 };
100
101} // namespace impactx
102
103#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:56
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
std::string m_distribution
Definition Source.H:96
static constexpr auto type
Definition Source.H:31
AMREX_GPU_HOST AMREX_FORCE_INLINE Map6x6 transport_map(RefPart const &AMREX_RESTRICT refpart) const
Definition Source.H:84
bool m_active_once
openPMD filename
Definition Source.H:98
void reverse()
Definition Source.H:58
std::string m_series_name
Distribution type of particles in the source.
Definition Source.H:97
Source(std::string distribution, std::string openpmd_path, bool active_once=true, std::optional< std::string > name=std::nullopt)
Definition Source.H:41
ImpactXParticleContainer::ParticleType PType
Definition Source.H:32
Definition lineartransport.H:50
Definition named.H:29
AMREX_GPU_HOST Named(std::optional< std::string > name)
Definition named.H:57
AMREX_FORCE_INLINE std::string name() const
Definition named.H:122
Definition nofinalize.H:22
Definition thin.H:24