| 27 | #include "Equations/Setup.h" // IWYU pragma: keep |
| 28 | |
| 29 | seissol::physics::Planarwave::Planarwave(const CellMaterialData& materialData, |
| 30 | double phase, |
| 31 | Eigen::Vector3d kVec, |
| 32 | std::vector<int> varField, |
| 33 | std::vector<std::complex<double>> ampField) |
| 34 | : m_varField(std::move(varField)), m_ampField(std::move(ampField)), m_phase(phase), |
| 35 | m_kVec(std::move(kVec)) { |
| 36 | init(materialData); |
| 37 | } |
| 38 | |
| 39 | seissol::physics::Planarwave::Planarwave(const CellMaterialData& materialData, |
| 40 | double phase, |
nothing calls this directly
no outgoing calls
no test coverage detected