blob: 1df3d75ad8d8da7b558fd5a788895db1654ee3e1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <PlasmaInjector.H>
#include <iostream>
#include <AMReX.H>
amrex::Real CustomDensityProfile::getDensity(amrex::Real x,
amrex::Real y,
amrex::Real z) const
{
amrex::Abort("If running with a custom density profile, you must supply a CustomDensityProb.cpp file");
return 0.0;
}
|