HasSourceFrequency Concept ReferenceΒΆ

adc_cpp: pops::HasSourceFrequency Concept Reference
adc_cpp 0.3.0
Model-free C++23 core for coupled hyperbolic-elliptic systems on adaptive (AMR) meshes, with MPI and GPU (Kokkos) backends
pops::HasSourceFrequency Concept Reference

OPTIONAL trait: local source frequency mu [1/s] (bound dt <= cfl / max mu, without h). More...

#include <physical_model.hpp>

Concept definition

template<class M>
concept pops::HasSourceFrequency = requires(const M m, const typename M::State u, const Aux a) {
{ m.source_frequency(u, a) } -> std::convertible_to<Real>;
}
OPTIONAL trait: local source frequency mu [1/s] (bound dt <= cfl / max mu, without h).
Definition physical_model.hpp:137

Detailed Description

OPTIONAL trait: local source frequency mu [1/s] (bound dt <= cfl / max mu, without h).