mirror of
https://github.com/gwm17/catima.git
synced 2025-04-06 00:08:50 -04:00
added new function to python
This commit is contained in:
parent
2cbf3c0c92
commit
582a7cbf83
10
catima.pyx
10
catima.pyx
|
@ -385,6 +385,16 @@ def dedx(Projectile projectile, Material material, energy = None, Config config
|
||||||
energy = projectile.T()
|
energy = projectile.T()
|
||||||
return catimac.dedx(projectile.cbase, energy, material.cbase, config.cbase)
|
return catimac.dedx(projectile.cbase, energy, material.cbase, config.cbase)
|
||||||
|
|
||||||
|
def domega2dx(Projectile projectile, Material material, energy = None, Config config = default_config):
|
||||||
|
if(isinstance(energy,numpy.ndarray)):
|
||||||
|
res = numpy.empty(energy.size)
|
||||||
|
for i,e in enumerate(energy):
|
||||||
|
res[i] = catimac.domega2dx(projectile.cbase, e, material.cbase, config.cbase)
|
||||||
|
return res
|
||||||
|
if(energy is None):
|
||||||
|
energy = projectile.T()
|
||||||
|
return catimac.domega2dx(projectile.cbase, energy, material.cbase, config.cbase)
|
||||||
|
|
||||||
def energy_out(Projectile projectile, Material material, energy = None, Config config = default_config):
|
def energy_out(Projectile projectile, Material material, energy = None, Config config = default_config):
|
||||||
if(isinstance(energy,numpy.ndarray)):
|
if(isinstance(energy,numpy.ndarray)):
|
||||||
res = numpy.empty(energy.size)
|
res = numpy.empty(energy.size)
|
||||||
|
|
|
@ -66,6 +66,7 @@ cdef extern from "catima/config.h" namespace "catima":
|
||||||
|
|
||||||
cdef extern from "catima/catima.h" namespace "catima":
|
cdef extern from "catima/catima.h" namespace "catima":
|
||||||
cdef double dedx(Projectile &p, double T, const Material &t,const Config &c)
|
cdef double dedx(Projectile &p, double T, const Material &t,const Config &c)
|
||||||
|
cdef double domega2dx(Projectile &p, double T, const Material &mat, const Config &c)
|
||||||
cdef double range(Projectile &p, double T, const Material &t, const Config &c);
|
cdef double range(Projectile &p, double T, const Material &t, const Config &c);
|
||||||
cdef double dedx_from_range(Projectile &p, double T, const Material &t, const Config &c);
|
cdef double dedx_from_range(Projectile &p, double T, const Material &t, const Config &c);
|
||||||
cdef double energy_out(Projectile &p, double T, const Material &t, const Config &c);
|
cdef double energy_out(Projectile &p, double T, const Material &t, const Config &c);
|
||||||
|
@ -75,7 +76,6 @@ cdef extern from "catima/catima.h" namespace "catima":
|
||||||
|
|
||||||
cdef double range_straggling(Projectile &p, double T, const Material &t, const Config &c);
|
cdef double range_straggling(Projectile &p, double T, const Material &t, const Config &c);
|
||||||
cdef double da2dx(Projectile &p, double T, const Material &t, const Config &c);
|
cdef double da2dx(Projectile &p, double T, const Material &t, const Config &c);
|
||||||
cdef double dedx_rms(Projectile &p, Target &t, const Config &c);
|
|
||||||
cdef double angular_variance(Projectile &p, double T, const Material &t, const Config& c);
|
cdef double angular_variance(Projectile &p, double T, const Material &t, const Config& c);
|
||||||
|
|
||||||
cdef Result calculate(Projectile &p, const Material &t, const Config &c);
|
cdef Result calculate(Projectile &p, const Material &t, const Config &c);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user