2019-02-18 14:42:44 +02:00
|
|
|
cimport numpy as np
|
|
|
|
|
2019-02-25 22:25:42 +02:00
|
|
|
ctypedef double complex cdouble
|
|
|
|
|
2019-03-03 02:05:24 +02:00
|
|
|
from libc.stdint cimport *
|
2019-02-25 22:25:42 +02:00
|
|
|
|
2019-02-18 14:42:44 +02:00
|
|
|
cdef extern from "qpms_types.h":
|
|
|
|
cdef struct cart3_t:
|
|
|
|
double x
|
|
|
|
double y
|
|
|
|
double z
|
2019-07-15 16:36:37 +03:00
|
|
|
cdef struct ccart3_t:
|
|
|
|
cdouble x
|
|
|
|
cdouble y
|
|
|
|
cdouble z
|
2019-02-18 14:42:44 +02:00
|
|
|
cdef struct cart2_t:
|
|
|
|
double x
|
|
|
|
double y
|
|
|
|
cdef struct sph_t:
|
|
|
|
double r
|
|
|
|
double theta
|
|
|
|
double phi
|
2019-07-15 17:26:32 +03:00
|
|
|
cdef struct csph_t:
|
|
|
|
cdouble r
|
|
|
|
double theta
|
|
|
|
double phi
|
|
|
|
cdef struct csphvec_t:
|
|
|
|
cdouble rc
|
|
|
|
cdouble thetac
|
|
|
|
cdouble phic
|
2019-02-18 14:42:44 +02:00
|
|
|
cdef struct pol_t:
|
|
|
|
double r
|
|
|
|
double phi
|
|
|
|
cdef union anycoord_point_t:
|
|
|
|
double z
|
|
|
|
cart3_t cart3
|
|
|
|
cart2_t cart2
|
|
|
|
pol_t pol
|
|
|
|
ctypedef enum qpms_normalisation_t:
|
|
|
|
QPMS_NORMALISATION_UNDEF
|
2019-07-14 20:19:13 +03:00
|
|
|
QPMS_NORMALISATION_INVERSE
|
|
|
|
QPMS_NORMALISATION_REVERSE_AZIMUTHAL_PHASE
|
|
|
|
QPMS_NORMALISATION_SPHARM_REAL
|
|
|
|
QPMS_NORMALISATION_CSPHASE
|
|
|
|
QPMS_NORMALISATION_M_I
|
|
|
|
QPMS_NORMALISATION_M_MINUS
|
|
|
|
QPMS_NORMALISATION_N_I
|
|
|
|
QPMS_NORMALISATION_N_MINUS
|
|
|
|
QPMS_NORMALISATION_L_I
|
|
|
|
QPMS_NORMALISATION_L_MINUS
|
|
|
|
QPMS_NORMALISATION_NORM_BITSTART
|
|
|
|
QPMS_NORMALISATION_NORM_POWER
|
|
|
|
QPMS_NORMALISATION_NORM_SPHARM
|
|
|
|
QPMS_NORMALISATION_NORM_NONE
|
|
|
|
QPMS_NORMALISATION_NORM_BITS
|
|
|
|
QPMS_NORMALISATION_CONVENTION_KRISTENSSON_REAL
|
|
|
|
QPMS_NORMALISATION_CONVENTION_KRISTENSSON
|
|
|
|
QPMS_NORMALISATION_CONVENTION_SCUFF
|
2019-03-18 17:54:32 +02:00
|
|
|
ctypedef enum qpms_bessel_t:
|
|
|
|
QPMS_BESSEL_REGULAR
|
|
|
|
QPMS_BESSEL_SINGULAR
|
|
|
|
QPMS_HANKEL_PLUS
|
|
|
|
QPMS_HANKEL_MINUS
|
2019-07-22 12:13:22 +03:00
|
|
|
QPMS_BESSEL_UNDEF
|
2019-02-25 07:03:11 +02:00
|
|
|
ctypedef int qpms_lm_t
|
|
|
|
ctypedef int qpms_l_t
|
|
|
|
ctypedef int qpms_m_t
|
2019-02-25 18:11:22 +02:00
|
|
|
struct qpms_quat_t:
|
|
|
|
cdouble a
|
|
|
|
cdouble b
|
|
|
|
struct qpms_quat4d_t:
|
|
|
|
double c1
|
|
|
|
double ci
|
|
|
|
double cj
|
|
|
|
double ck
|
|
|
|
struct qpms_irot3_t:
|
|
|
|
qpms_quat_t rot
|
|
|
|
short det
|
2019-02-25 22:25:42 +02:00
|
|
|
ctypedef np.ulonglong_t qpms_uvswfi_t
|
|
|
|
struct qpms_vswf_set_spec_t:
|
|
|
|
size_t n
|
|
|
|
qpms_uvswfi_t *ilist
|
|
|
|
qpms_l_t lMax
|
|
|
|
qpms_l_t lMax_M
|
|
|
|
qpms_l_t lMax_N
|
|
|
|
qpms_l_t lMax_L
|
|
|
|
size_t capacity
|
|
|
|
qpms_normalisation_t norm
|
|
|
|
ctypedef enum qpms_errno_t:
|
|
|
|
QPMS_SUCCESS
|
|
|
|
QPMS_ERROR
|
|
|
|
# more if needed
|
|
|
|
ctypedef enum qpms_vswf_type_t:
|
|
|
|
QPMS_VSWF_ELECTRIC
|
|
|
|
QPMS_VSWF_MAGNETIC
|
|
|
|
QPMS_VSWF_LONGITUDINAL
|
2019-03-03 02:05:24 +02:00
|
|
|
ctypedef int32_t qpms_ss_tmi_t
|
|
|
|
ctypedef int32_t qpms_ss_pi_t
|
2019-03-02 21:32:46 +02:00
|
|
|
ctypedef int qpms_gmi_t
|
|
|
|
ctypedef int qpms_iri_t
|
|
|
|
ctypedef const char * qpms_permutation_t
|
2019-03-18 15:04:21 +02:00
|
|
|
struct qpms_tmatrix_t:
|
|
|
|
qpms_vswf_set_spec_t *spec
|
|
|
|
cdouble *m
|
|
|
|
bint owns_m # FIXME in fact bool
|
2019-07-24 18:26:12 +03:00
|
|
|
ctypedef enum qpms_pointgroup_class:
|
|
|
|
QPMS_PGS_CN
|
|
|
|
QPMS_PGS_S2N
|
|
|
|
QPMS_PGS_CNH
|
|
|
|
QPMS_PGS_CNV
|
|
|
|
QPMS_PGS_DN
|
|
|
|
QPMS_PGS_DND
|
|
|
|
QPMS_PGS_DNH
|
|
|
|
QPMS_PGS_T
|
|
|
|
QPMS_PGS_TD
|
|
|
|
QPMS_PGS_TH
|
|
|
|
QPMS_PGS_O
|
|
|
|
QPMS_PGS_OH
|
|
|
|
QPMS_PGS_I
|
|
|
|
QPMS_PGS_IH
|
|
|
|
QPMS_PGS_CINF
|
|
|
|
QPMS_PGS_CINFH
|
|
|
|
QPMS_PGS_CINFV
|
|
|
|
QPMS_PGS_DINF
|
|
|
|
QPMS_PGS_DINFH
|
|
|
|
QPMS_PGS_SO3
|
|
|
|
QPMS_PGS_O3
|
|
|
|
struct qpms_pointgroup_t:
|
|
|
|
qpms_pointgroup_class c
|
|
|
|
qpms_gmi_t n
|
|
|
|
qpms_irot3_t orientation
|
2019-08-09 17:45:12 +03:00
|
|
|
struct qpms_epsmu_t:
|
|
|
|
cdouble eps
|
|
|
|
cdouble mu
|
2019-02-25 22:25:42 +02:00
|
|
|
# maybe more if needed
|
|
|
|
|
2019-03-27 09:03:24 +02:00
|
|
|
cdef extern from "qpms_error.h":
|
|
|
|
ctypedef enum qpms_dbgmsg_flags:
|
|
|
|
QPMS_DBGMSG_MISC
|
|
|
|
QPMS_DBGMSG_THREADS
|
|
|
|
qpms_dbgmsg_flags qpms_dbgmsg_enable(qpms_dbgmsg_flags types)
|
|
|
|
qpms_dbgmsg_flags qpms_dbgmsg_disable(qpms_dbgmsg_flags types)
|
|
|
|
|
2019-07-15 17:26:32 +03:00
|
|
|
|
|
|
|
# This is due to the fact that cython apparently cannot nest the unnamed struct/unions in an obvious way
|
|
|
|
ctypedef union qpms_incfield_planewave_params_k:
|
|
|
|
ccart3_t cart
|
|
|
|
csph_t sph
|
|
|
|
ctypedef union qpms_incfield_planewave_params_E:
|
|
|
|
ccart3_t cart
|
|
|
|
csphvec_t sph
|
|
|
|
|
2019-07-15 16:36:37 +03:00
|
|
|
cdef extern from "vswf.h":
|
|
|
|
ctypedef qpms_errno_t (*qpms_incfield_t)(cdouble target, const qpms_vswf_set_spec_t *bspec,
|
|
|
|
const cart3_t evalpoint, const void *args, bint add)
|
|
|
|
ctypedef struct qpms_incfield_planewave_params_t:
|
|
|
|
bint use_cartesian
|
2019-07-15 17:26:32 +03:00
|
|
|
qpms_incfield_planewave_params_k k
|
|
|
|
qpms_incfield_planewave_params_E E
|
2019-07-15 16:36:37 +03:00
|
|
|
qpms_errno_t qpms_incfield_planewave(cdouble target, const qpms_vswf_set_spec_t *bspec,
|
|
|
|
const cart3_t evalpoint, const void *args, bint add)
|
2019-03-27 09:03:24 +02:00
|
|
|
|
2019-02-25 22:25:42 +02:00
|
|
|
cdef extern from "indexing.h":
|
|
|
|
qpms_uvswfi_t qpms_tmn2uvswfi(qpms_vswf_type_t t, qpms_m_t m, qpms_l_t n)
|
|
|
|
qpms_errno_t qpms_uvswfi2tmn(qpms_uvswfi_t u, qpms_vswf_type_t* t, qpms_m_t* m, qpms_l_t* n)
|
|
|
|
qpms_m_t qpms_uvswfi2m(qpms_uvswfi_t u)
|
2019-02-18 14:42:44 +02:00
|
|
|
# maybe more if needed
|
|
|
|
|
|
|
|
# Point generators from lattices.h
|
|
|
|
cdef extern from "lattices.h":
|
|
|
|
ctypedef enum PGenPointFlags:
|
|
|
|
pass
|
|
|
|
struct PGenReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenZReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenPolReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenSphReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenCart2ReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenCart3ReturnData:
|
|
|
|
pass
|
|
|
|
struct PGenClassInfo: # maybe important
|
|
|
|
pass
|
|
|
|
struct PGen: # probably important
|
|
|
|
PGenClassInfo* c
|
|
|
|
void *statedata
|
|
|
|
void PGen_destroy(PGen *g)
|
|
|
|
|
|
|
|
# now the individual PGen implementations:
|
|
|
|
# FIXME Is bint always guaranteed to be equivalent to _Bool? (I dont't think so.)
|
|
|
|
PGen PGen_xyWeb_new(cart2_t b1, cart2_t b2, double rtol, cart2_t offset,
|
|
|
|
double minR, bint inc_minR, double maxR, bint inc_maxR)
|
|
|
|
ctypedef enum PGen_1D_incrementDirection:
|
|
|
|
PGEN_1D_INC_FROM_ORIGIN
|
|
|
|
PGEN_1D_INC_TOWARDS_ORIGIN
|
|
|
|
PGen PGen_1D_new_minMaxR(double period, double offset, double minR, bint inc_minR,
|
|
|
|
double maxR, bint inc_maxR, PGen_1D_incrementDirection incdir)
|
|
|
|
|
|
|
|
|
2019-07-23 23:06:44 +03:00
|
|
|
cdef extern from "quaternions.h":
|
2019-02-25 07:03:11 +02:00
|
|
|
qpms_quat_t qpms_quat_2c_from_4d(qpms_quat4d_t q)
|
|
|
|
qpms_quat4d_t qpms_quat_4d_from_2c(qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_mult(qpms_quat_t p, qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_add(qpms_quat_t p, qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_rscale(double s, qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_conj(qpms_quat_t q)
|
|
|
|
double qpms_quat_norm(qpms_quat_t q)
|
|
|
|
double qpms_quat_imnorm(qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_normalise(qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_log(qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_exp(qpms_quat_t q)
|
|
|
|
qpms_quat_t qpms_quat_pow(qpms_quat_t q, double exponent)
|
|
|
|
cdouble qpms_wignerD_elem(qpms_quat_t q, qpms_l_t l,
|
|
|
|
qpms_m_t mp, qpms_m_t m)
|
2019-02-25 09:52:23 +02:00
|
|
|
qpms_irot3_t qpms_irot3_mult(qpms_irot3_t p, qpms_irot3_t q)
|
|
|
|
qpms_irot3_t qpms_irot3_pow(qpms_irot3_t p, int n)
|
2019-07-21 23:37:25 +03:00
|
|
|
qpms_quat_t qpms_quat_from_rotvector(cart3_t v)
|
2019-02-25 07:03:11 +02:00
|
|
|
|
2019-03-02 21:32:46 +02:00
|
|
|
cdef extern from "groups.h":
|
|
|
|
struct qpms_finite_group_irrep_t:
|
|
|
|
int dim
|
|
|
|
char *name
|
|
|
|
cdouble *m
|
|
|
|
struct qpms_finite_group_t:
|
|
|
|
char *name
|
|
|
|
qpms_gmi_t order
|
|
|
|
qpms_gmi_t idi
|
|
|
|
qpms_gmi_t *mt
|
|
|
|
qpms_gmi_t *invi
|
|
|
|
qpms_gmi_t *gens
|
|
|
|
int ngens
|
|
|
|
qpms_permutation_t *permrep
|
|
|
|
char **elemlabels
|
|
|
|
int permrep_nelem
|
|
|
|
qpms_irot3_t *rep3d
|
|
|
|
qpms_iri_t nirreps
|
|
|
|
qpms_finite_group_irrep_t *irreps
|
2019-03-03 02:05:24 +02:00
|
|
|
qpms_finite_group_t QPMS_FINITE_GROUP_TRIVIAL
|
|
|
|
qpms_finite_group_t QPMS_FINITE_GROUP_TRIVIAL_G
|
2019-03-02 21:32:46 +02:00
|
|
|
|
2019-02-25 22:25:42 +02:00
|
|
|
cdef extern from "symmetries.h":
|
|
|
|
cdouble *qpms_zflip_uvswi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec)
|
|
|
|
cdouble *qpms_yflip_uvswi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec)
|
|
|
|
cdouble *qpms_xflip_uvswi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec)
|
|
|
|
cdouble *qpms_zrot_uvswi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec, double phi)
|
|
|
|
cdouble *qpms_zrot_rational_uvswi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec, int N, int w)
|
|
|
|
cdouble *qpms_irot3_uvswfi_dense(cdouble *target, const qpms_vswf_set_spec_t *bspec, qpms_irot3_t transf)
|
2019-03-06 22:15:27 +02:00
|
|
|
size_t qpms_zero_roundoff_clean(double *arr, size_t nmemb, double atol)
|
|
|
|
size_t qpms_czero_roundoff_clean(cdouble *arr, size_t nmemb, double atol)
|
2019-02-18 14:42:44 +02:00
|
|
|
|
|
|
|
#cdef extern from "numpy/arrayobject.h":
|
|
|
|
# cdef enum NPY_TYPES:
|
|
|
|
# NPY_DOUBLE
|
|
|
|
# NPY_CDOUBLE # complex double
|
|
|
|
# NPY_LONG # int
|
|
|
|
# ctypedef int npy_intp
|
|
|
|
|
|
|
|
|
|
|
|
cdef extern from "translations.h":
|
|
|
|
cdouble qpms_trans_single_A_Taylor_ext(int m, int n, int mu, int nu,
|
|
|
|
double r, double th, double ph, int r_ge_d, int J) nogil
|
|
|
|
cdouble qpms_trans_single_B_Taylor_ext(int m, int n, int mu, int nu,
|
|
|
|
double r, double th, double ph, int r_ge_d, int J) nogil
|
|
|
|
struct qpms_trans_calculator:
|
|
|
|
int lMax
|
|
|
|
size_t nelem
|
|
|
|
cdouble** A_multipliers
|
|
|
|
cdouble** B_multipliers
|
|
|
|
enum qpms_normalization_t:
|
|
|
|
pass
|
|
|
|
qpms_trans_calculator* qpms_trans_calculator_init(int lMax, int nt) # should be qpms_normalization_t
|
|
|
|
void qpms_trans_calculator_free(qpms_trans_calculator* c)
|
|
|
|
cdouble qpms_trans_calculator_get_A_ext(const qpms_trans_calculator* c,
|
|
|
|
int m, int n, int mu, int nu, double kdlj_r, double kdlj_th, double kdlj_phi,
|
|
|
|
int r_ge_d, int J) nogil
|
|
|
|
cdouble qpms_trans_calculator_get_B_ext(const qpms_trans_calculator* c,
|
|
|
|
int m, int n, int mu, int nu, double kdlj_r, double kdlj_th, double kdlj_phi,
|
|
|
|
int r_ge_d, int J) nogil
|
|
|
|
int qpms_trans_calculator_get_AB_p_ext(const qpms_trans_calculator* c,
|
|
|
|
cdouble *Adest, cdouble *Bdest,
|
|
|
|
int m, int n, int mu, int nu, double kdlj_r, double kdlj_th, double kdlj_phi,
|
|
|
|
int r_ge_d, int J) nogil
|
|
|
|
int qpms_trans_calculator_get_AB_arrays_ext(const qpms_trans_calculator *c,
|
|
|
|
cdouble *Adest, cdouble *Bdest,
|
|
|
|
size_t deststride, size_t srcstride,
|
|
|
|
double kdlj_r, double kdlj_theta, double kdlj_phi,
|
|
|
|
int r_ge_d, int J) nogil
|
|
|
|
int qpms_cython_trans_calculator_get_AB_arrays_loop(qpms_trans_calculator *c,
|
|
|
|
int J, int resnd,
|
|
|
|
int daxis, int saxis,
|
|
|
|
char *A_data, np.npy_intp *A_shape, np.npy_intp *A_strides,
|
|
|
|
char *B_data, np.npy_intp *B_shape, np.npy_intp *B_strides,
|
|
|
|
char *r_data, np.npy_intp *r_shape, np.npy_intp *r_strides,
|
|
|
|
char *theta_data, np.npy_intp *theta_shape, np.npy_intp *theta_strides,
|
|
|
|
char *phi_data, np.npy_intp *phi_shape, np.npy_intp *phi_strides,
|
|
|
|
char *r_ge_d_data, np.npy_intp *phi_shape, np.npy_intp *phi_strides) nogil
|
|
|
|
|
2019-07-22 10:08:09 +03:00
|
|
|
int qpms_trans_calculator_get_trans_array(const qpms_trans_calculator *c,
|
|
|
|
cdouble *target,
|
|
|
|
const qpms_vswf_set_spec_t *destspec, size_t deststride,
|
|
|
|
const qpms_vswf_set_spec_t *srcspec, size_t srcstride,
|
|
|
|
sph_t kdlj, bint r_ge_d, qpms_bessel_t J);
|
|
|
|
|
|
|
|
int qpms_trans_calculator_get_trans_array_lc3p(
|
|
|
|
const qpms_trans_calculator *c,
|
|
|
|
cdouble *target,
|
|
|
|
const qpms_vswf_set_spec_t *destspec, size_t deststride,
|
|
|
|
const qpms_vswf_set_spec_t *srcspec, size_t srcstride,
|
|
|
|
double k, cart3_t destpos, cart3_t srcpos,
|
|
|
|
qpms_bessel_t J
|
|
|
|
);
|
|
|
|
|
2019-03-06 22:15:27 +02:00
|
|
|
cdef extern from "gsl/gsl_interp.h":
|
|
|
|
struct gsl_interp_type:
|
|
|
|
pass
|
2019-03-06 23:05:52 +02:00
|
|
|
const gsl_interp_type *gsl_interp_linear
|
|
|
|
const gsl_interp_type *gsl_interp_cspline
|
2019-03-06 22:15:27 +02:00
|
|
|
# ^^^ These are probably the only relevant ones.
|
|
|
|
|
2019-08-09 17:45:12 +03:00
|
|
|
cdef extern from "materials.h":
|
|
|
|
struct qpms_epsmu_generator_t:
|
|
|
|
qpms_epsmu_t (*function)(cdouble omega, const void *params)
|
|
|
|
const void *params
|
|
|
|
qpms_epsmu_t qpms_epsmu_const_g(cdouble omega, const void *params)
|
|
|
|
qpms_epsmu_t qpms_permittivity_interpolator_epsmu_g(cdouble omega, const void *epsmu)
|
|
|
|
qpms_epsmu_t qpms_lorentzdrude_epsmu_g(cdouble omega, const void *ldparams)
|
|
|
|
|
|
|
|
struct qpms_permittivity_interpolator_t:
|
|
|
|
pass
|
|
|
|
qpms_permittivity_interpolator_t *qpms_permittivity_interpolator_create(const size_t incount,
|
|
|
|
cdouble *wavelength_m, cdouble *n, cdouble *k, const gsl_interp_type *iptype)
|
|
|
|
qpms_permittivity_interpolator_t *qpms_permittivity_interpolator_from_yml(const char *path,
|
|
|
|
const gsl_interp_type *iptype)
|
|
|
|
cdouble qpms_permittivity_interpolator_eps_at_omega(const qpms_permittivity_interpolator_t *interp, double omega_SI)
|
|
|
|
double qpms_permittivity_interpolator_omega_max(const qpms_permittivity_interpolator_t *interp)
|
|
|
|
double qpms_permittivity_interpolator_omega_min(const qpms_permittivity_interpolator_t *interp)
|
|
|
|
void qpms_permittivity_interpolator_free(qpms_permittivity_interpolator_t *interp)
|
|
|
|
struct qpms_ldparams_t:
|
|
|
|
pass
|
|
|
|
const qpms_ldparams_t *const QPMS_LDPARAMS_AG
|
|
|
|
const qpms_ldparams_t *const QPMS_LDPARAMS_AU
|
|
|
|
|
2019-03-18 15:04:21 +02:00
|
|
|
cdef extern from "tmatrices.h":
|
2019-07-16 14:06:55 +03:00
|
|
|
bint qpms_load_scuff_tmatrix_crash_on_failure
|
2019-08-09 17:45:12 +03:00
|
|
|
struct qpms_tmatrix_generator_t:
|
|
|
|
qpms_errno_t (*function)(qpms_tmatrix_t *t, cdouble omega, const void *params)
|
|
|
|
const void *params
|
|
|
|
qpms_errno_t qpms_tmatrix_generator_axialsym(qpms_tmatrix_t *t, cdouble omega, const void *params)
|
|
|
|
qpms_errno_t qpms_tmatrix_generator_interpolator(qpms_tmatrix_t *t, cdouble omega, const void *params)
|
|
|
|
qpms_errno_t qpms_tmatrix_generator_sphere(qpms_tmatrix_t *t, cdouble omega, const void *params)
|
|
|
|
struct qpms_tmatrix_generator_sphere_param_t:
|
|
|
|
qpms_epsmu_generator_t outside
|
|
|
|
qpms_epsmu_generator_t inside
|
|
|
|
double radius
|
|
|
|
struct qpms_arc_function_retval_t:
|
|
|
|
double r
|
|
|
|
double beta
|
|
|
|
struct qpms_arc_function_t:
|
|
|
|
qpms_arc_function_retval_t (*function)(double theta, const void *params)
|
|
|
|
const void *params
|
|
|
|
struct qpms_tmatrix_generator_axialsym_param_t:
|
|
|
|
qpms_epsmu_generator_t outside
|
|
|
|
qpms_epsmu_generator_t inside
|
|
|
|
qpms_arc_function_t shape
|
|
|
|
qpms_l_t lMax_extend
|
|
|
|
struct qpms_arc_cylinder_params_t:
|
|
|
|
double R
|
|
|
|
double h
|
|
|
|
qpms_arc_function_retval_t qpms_arc_cylinder(double theta, const void *params)
|
|
|
|
qpms_arc_function_retval_t qpms_arc_sphere(double theta, const void *params)
|
2019-02-26 15:33:08 +02:00
|
|
|
struct qpms_tmatrix_interpolator_t:
|
|
|
|
const qpms_vswf_set_spec_t *bspec
|
2019-03-06 22:15:27 +02:00
|
|
|
void qpms_tmatrix_interpolator_free(qpms_tmatrix_interpolator_t *interp)
|
|
|
|
qpms_tmatrix_t *qpms_tmatrix_interpolator_eval(const qpms_tmatrix_interpolator_t *interp, double freq)
|
|
|
|
qpms_tmatrix_interpolator_t *qpms_tmatrix_interpolator_create(size_t n, double *freqs,
|
|
|
|
const qpms_tmatrix_t *tmatrices_array, const gsl_interp_type *iptype)
|
|
|
|
void qpms_tmatrix_free(qpms_tmatrix_t *tmatrix)
|
2019-03-03 02:05:24 +02:00
|
|
|
qpms_tmatrix_isclose(const qpms_tmatrix_t *A, const qpms_tmatrix_t *B,
|
|
|
|
const double rtol, const double atol)
|
2019-03-06 22:15:27 +02:00
|
|
|
qpms_errno_t qpms_symmetrise_tmdata_irot3arr(
|
|
|
|
cdouble *tmdata, const size_t tmcount,
|
|
|
|
const qpms_vswf_set_spec_t *bspec,
|
|
|
|
size_t n_symops,
|
|
|
|
const qpms_irot3_t *symops
|
|
|
|
)
|
|
|
|
qpms_errno_t qpms_symmetrise_tmdata_finite_group(
|
|
|
|
cdouble *tmdata, const size_t tmcount,
|
|
|
|
const qpms_vswf_set_spec_t *bspec,
|
|
|
|
const qpms_finite_group_t *pointgroup
|
|
|
|
)
|
|
|
|
qpms_tmatrix_t *qpms_tmatrix_symmetrise_irot3arr_inplace(
|
|
|
|
qpms_tmatrix_t *T,
|
|
|
|
size_t n_symops,
|
|
|
|
const qpms_irot3_t *symops
|
|
|
|
)
|
|
|
|
qpms_tmatrix_t *qpms_tmatrix_symmetrise_finite_group_inplace(
|
|
|
|
qpms_tmatrix_t *T,
|
|
|
|
const qpms_finite_group_t *pointgroup
|
|
|
|
)
|
|
|
|
qpms_errno_t qpms_load_scuff_tmatrix(const char *path, const qpms_vswf_set_spec_t *bspec,
|
|
|
|
size_t *n, double **freqs, double **freqs_su, qpms_tmatrix_t **tmatrices_array,
|
|
|
|
cdouble **tmdata)
|
2019-03-18 17:54:32 +02:00
|
|
|
cdouble *qpms_mie_coefficients_reflection(cdouble *target, const qpms_vswf_set_spec_t *bspec,
|
|
|
|
double a, cdouble k_i, cdouble k_e, cdouble mu_i, cdouble mu_e, qpms_bessel_t J_ext, qpms_bessel_t J_scat)
|
2019-03-24 16:47:42 +02:00
|
|
|
qpms_tmatrix_t *qpms_tmatrix_spherical(const qpms_vswf_set_spec_t *bspec, double a,
|
|
|
|
cdouble k_i, cdouble k_e, cdouble mu_i, cdouble mu_e)
|
2019-03-18 17:54:32 +02:00
|
|
|
qpms_errno_t qpms_tmatrix_spherical_fill(qpms_tmatrix_t *t, double a,
|
|
|
|
cdouble k_i, cdouble k_e, cdouble mu_i, cdouble mu_e)
|
|
|
|
qpms_tmatrix_t *qpms_tmatrix_spherical(const qpms_vswf_set_spec_t *bspec,
|
|
|
|
double a, cdouble k_i, cdouble k_e, cdouble mu_i, cdouble mu_e)
|
2019-03-24 16:47:42 +02:00
|
|
|
cdouble qpms_drude_epsilon(cdouble eps_inf, cdouble omega_p, cdouble gamma_p, cdouble omega)
|
|
|
|
qpms_errno_t qpms_tmatrix_spherical_mu0_fill(qpms_tmatrix_t *t, double a, double omega,
|
|
|
|
cdouble epsilon_fg, cdouble epsilon_bg)
|
|
|
|
qpms_tmatrix_t *qpms_tmatrix_spherical_mu0(const qpms_vswf_set_spec_t *bspec, double a,
|
|
|
|
double omega, cdouble epsilon_fg, cdouble epsilon_bg)
|
2019-08-08 15:33:06 +03:00
|
|
|
|
2019-07-24 18:26:12 +03:00
|
|
|
cdef extern from "pointgroups.h":
|
|
|
|
bint qpms_pg_is_finite_axial(qpms_pointgroup_class cls)
|
|
|
|
double qpms_pg_quat_cmp_atol
|
|
|
|
int qpms_pg_irot3_cmp(const qpms_irot3_t *, const qpms_irot3_t *);
|
|
|
|
int qpms_pg_irot3_cmp_v(const void *, const void *);
|
|
|
|
int qpms_pg_irot3_approx_cmp(const qpms_irot3_t *a, const qpms_irot3_t *b, double atol)
|
|
|
|
int qpms_pg_irot3_approx_cmp_v(const void *a, const void *b)
|
|
|
|
|
|
|
|
qpms_gmi_t qpms_pg_order(qpms_pointgroup_class cls, qpms_gmi_t n)
|
|
|
|
qpms_irot3_t *qpms_pg_canonical_elems( qpms_irot3_t *target, qpms_pointgroup_class cls, qpms_gmi_t n)
|
|
|
|
qpms_gmi_t qpms_pg_genset_size(qpms_pointgroup_class cls, qpms_gmi_t n)
|
|
|
|
qpms_gmi_t qpms_pg_genset(qpms_pointgroup_class cls, qpms_gmi_t n, qpms_irot3_t *gen)
|
|
|
|
qpms_irot3_t *qpms_pg_elems(qpms_irot3_t *target, qpms_pointgroup_t g)
|
|
|
|
bint qpms_pg_is_subgroup(qpms_pointgroup_t a, qpms_pointgroup_t b);
|
2019-03-18 15:04:21 +02:00
|
|
|
|
|
|
|
cdef extern from "scatsystem.h":
|
2019-03-26 13:33:22 +02:00
|
|
|
void qpms_scatsystem_set_nthreads(long n)
|
2019-03-18 15:04:21 +02:00
|
|
|
struct qpms_particle_t:
|
|
|
|
cart3_t pos
|
|
|
|
const qpms_tmatrix_t *tmatrix
|
|
|
|
struct qpms_particle_tid_t:
|
|
|
|
cart3_t pos
|
|
|
|
qpms_ss_tmi_t tmatrix_id
|
|
|
|
struct qpms_scatsys_t:
|
|
|
|
qpms_tmatrix_t **tm
|
|
|
|
qpms_ss_tmi_t tm_count
|
|
|
|
qpms_particle_tid_t *p
|
|
|
|
qpms_ss_pi_t p_count
|
|
|
|
# We shouldn't need more to construct a symmetric scatsystem ^^^
|
|
|
|
size_t fecv_size
|
|
|
|
size_t *saecv_sizes
|
|
|
|
const qpms_finite_group_t *sym
|
|
|
|
qpms_scatsys_t *qpms_scatsys_apply_symmetry(const qpms_scatsys_t *orig, const qpms_finite_group_t *sym)
|
|
|
|
void qpms_scatsys_free(qpms_scatsys_t *s)
|
|
|
|
qpms_errno_t qpms_scatsys_dump(qpms_scatsys_t *ss, char *path) #NI
|
|
|
|
qpms_scatsys_t *qpms_scatsys_load(char *path) #NI
|
2019-03-08 13:10:01 +02:00
|
|
|
cdouble *qpms_scatsys_irrep_pack_matrix(cdouble *target_packed,
|
|
|
|
const cdouble *orig_full, const qpms_scatsys_t *ss, qpms_iri_t iri)
|
|
|
|
cdouble *qpms_scatsys_irrep_unpack_matrix(cdouble *target_full,
|
|
|
|
const cdouble *orig_packed, const qpms_scatsys_t *ss, qpms_iri_t iri, bint add)
|
|
|
|
cdouble *qpms_scatsys_irrep_pack_vector(cdouble *target_packed,
|
|
|
|
const cdouble *orig_full, const qpms_scatsys_t *ss, qpms_iri_t iri)
|
|
|
|
cdouble *qpms_scatsys_irrep_unpack_vector(cdouble *target_full,
|
|
|
|
const cdouble *orig_packed, const qpms_scatsys_t *ss, qpms_iri_t iri, bint add)
|
2019-03-09 12:55:46 +02:00
|
|
|
cdouble *qpms_scatsys_build_modeproblem_matrix_full(cdouble *target,
|
|
|
|
const qpms_scatsys_t *ss, double k)
|
2019-03-09 14:29:43 +02:00
|
|
|
cdouble *qpms_scatsys_build_translation_matrix_full(cdouble *target,
|
|
|
|
const qpms_scatsys_t *ss, double k)
|
2019-07-22 01:08:41 +03:00
|
|
|
cdouble *qpms_scatsys_build_translation_matrix_e_full(cdouble *target,
|
2019-07-21 21:14:11 +03:00
|
|
|
const qpms_scatsys_t *ss, double k, qpms_bessel_t J)
|
2019-03-09 12:55:46 +02:00
|
|
|
cdouble *qpms_scatsys_build_modeproblem_matrix_irrep_packed(cdouble *target,
|
|
|
|
const qpms_scatsys_t *ss, qpms_iri_t iri, double k)
|
2019-07-22 01:08:41 +03:00
|
|
|
cdouble *qpms_scatsys_build_translation_matrix_e_irrep_packed(cdouble *target,
|
|
|
|
const qpms_scatsys_t *ss, qpms_iri_t iri, double k, qpms_bessel_t J)
|
2019-03-17 23:49:10 +02:00
|
|
|
cdouble *qpms_scatsys_build_modeproblem_matrix_irrep_packed_orbitorderR(
|
|
|
|
cdouble *target, const qpms_scatsys_t *ss, qpms_iri_t iri, double k)
|
2019-03-18 03:06:04 +02:00
|
|
|
cdouble *qpms_scatsys_build_modeproblem_matrix_irrep_packed_parallelR(
|
|
|
|
cdouble *target, const qpms_scatsys_t *ss, qpms_iri_t iri, double k) nogil
|
2019-07-15 16:36:37 +03:00
|
|
|
cdouble *qpms_scatsys_incident_field_vector_full(cdouble *target_full,
|
|
|
|
const qpms_scatsys_t *ss, qpms_incfield_t field_at_point,
|
|
|
|
const void *args, bint add)
|
2019-07-22 16:56:03 +03:00
|
|
|
cdouble *qpms_scatsys_apply_Tmatrices_full(cdouble *target_full, const cdouble *inc_full,
|
|
|
|
const qpms_scatsys_t *ss)
|
2019-07-23 15:50:31 +03:00
|
|
|
struct qpms_ss_LU:
|
|
|
|
const qpms_scatsys_t *ss
|
|
|
|
bint full
|
|
|
|
qpms_iri_t iri
|
|
|
|
cdouble *a
|
|
|
|
int *ipiv
|
|
|
|
void qpms_ss_LU_free(qpms_ss_LU lu)
|
|
|
|
qpms_ss_LU qpms_scatsys_build_modeproblem_matrix_full_LU(cdouble *target,
|
|
|
|
int *target_piv, const qpms_scatsys_t *ss, double k)
|
|
|
|
qpms_ss_LU qpms_scatsys_build_modeproblem_matrix_irrep_packed_LU(cdouble *target,
|
|
|
|
int *target_piv, const qpms_scatsys_t *ss, qpms_iri_t iri, double k)
|
|
|
|
qpms_ss_LU qpms_scatsys_modeproblem_matrix_full_factorise(cdouble *modeproblem_matrix_full,
|
|
|
|
int *target_piv, const qpms_scatsys_t *ss)
|
|
|
|
qpms_ss_LU qpms_scatsys_modeproblem_matrix_irrep_packed_factorise(cdouble *modeproblem_matrix_full,
|
|
|
|
int *target_piv, const qpms_scatsys_t *ss, qpms_iri_t iri)
|
|
|
|
cdouble *qpms_scatsys_scatter_solve(cdouble *target_f, const cdouble *a_inc, qpms_ss_LU ludata)
|
2019-02-18 14:42:44 +02:00
|
|
|
|
2019-07-24 18:26:12 +03:00
|
|
|
|