/pygsl-0.9.5/testing/src/sf/sf__arrays.c

# · C · 389 lines · 333 code · 56 blank · 0 comment · 59 complexity · ca973c3b8390e050ed73afeb981e4724 MD5 · raw file

  1. #include <pygsl/utils.h>
  2. #include <pygsl/error_helpers.h>
  3. #include <pygsl/block_helpers.h>
  4. #include <gsl/gsl_sf.h>
  5. #include <gsl/gsl_nan.h>
  6. #ifndef IMPORTALL
  7. static PyObject *module=NULL;
  8. #endif
  9. typedef int (array_p_evaluator_iid_ad)(int nmin, int nmax, double x, double * result_array);
  10. static PyObject*
  11. PyGSL_sf_array_evaluator_legendre_iid_ad(PyObject *self, PyObject *args,
  12. array_p_evaluator_iid_ad * eval)
  13. {
  14. PyArrayObject *result = NULL;
  15. int lmax=0, m=0, dimension = 0, ret;
  16. double x=0, *data=NULL;
  17. FUNC_MESS_BEGIN();
  18. if (!PyArg_ParseTuple(args, "iid", &lmax, &m, &x)){
  19. return NULL;
  20. }
  21. if(m < 0){
  22. PyErr_SetString(PyExc_ValueError,
  23. "Nmin must be bigger than 0!");
  24. return NULL;
  25. }
  26. if(lmax < m){
  27. PyErr_SetString(PyExc_ValueError,
  28. "Nmax must be bigger or equal to nmin!");
  29. }
  30. dimension = gsl_sf_legendre_array_size(lmax, m);
  31. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  32. if(result == NULL)
  33. return NULL;
  34. data = (double *) result->data;
  35. ret = eval(lmax, m, x, data);
  36. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  37. goto fail;
  38. FUNC_MESS_END();
  39. return (PyObject *) result;
  40. fail:
  41. Py_XDECREF(result);
  42. return NULL;
  43. }
  44. static PyObject*
  45. PyGSL_sf_array_evaluator_iid_ad(PyObject *self, PyObject *args,
  46. array_p_evaluator_iid_ad * eval)
  47. {
  48. PyArrayObject *result = NULL;
  49. int nmin=0, nmax=0, dimension = 0, ret;
  50. double x=0, *data=NULL;
  51. FUNC_MESS_BEGIN();
  52. if (!PyArg_ParseTuple(args, "iid", &nmin, &nmax, &x)){
  53. return NULL;
  54. }
  55. if(nmin < 0){
  56. PyErr_SetString(PyExc_ImportError,
  57. "Nmin must be bigger than 0!");
  58. return NULL;
  59. }
  60. if(nmax < nmin){
  61. PyErr_SetString(PyExc_ImportError,
  62. "Nmax must be bigger or equal to nmin!");
  63. }
  64. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  65. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  66. if(result == NULL)
  67. return NULL;
  68. data = (double *) result->data;
  69. ret = eval(nmin, nmax, x, data);
  70. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  71. goto fail;
  72. FUNC_MESS_END();
  73. return (PyObject *) result;
  74. fail:
  75. Py_XDECREF(result);
  76. return NULL;
  77. }
  78. typedef int (array_p_evaluator_id_ad)(int nmax, double x, double * result_array);
  79. static PyObject*
  80. PyGSL_sf_array_evaluator_id_ad(PyObject *self, PyObject *args, array_p_evaluator_id_ad * eval)
  81. {
  82. PyArrayObject *result = NULL;
  83. int nmin=0, nmax=0, dimension = 0, ret;
  84. double x=0, *data=NULL;
  85. FUNC_MESS_BEGIN();
  86. if (!PyArg_ParseTuple(args, "id", &nmax, &x)){
  87. return NULL;
  88. }
  89. if(nmin < 0){
  90. PyErr_SetString(PyExc_ImportError,
  91. "Nmin must be bigger than 0!");
  92. return NULL;
  93. }
  94. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  95. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  96. if(result == NULL)
  97. return NULL;
  98. data = (double *) result->data;
  99. ret = eval(nmax, x, data);
  100. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  101. goto fail;
  102. FUNC_MESS_END();
  103. return (PyObject *) result;
  104. fail:
  105. Py_XDECREF(result);
  106. return NULL;
  107. }
  108. typedef int (array_p_evaluator_idd_ad)(int nmax, double x1, double x2, double * result_array);
  109. static PyObject*
  110. PyGSL_sf_array_evaluator_idd_ad(PyObject *self, PyObject *args, array_p_evaluator_idd_ad * eval)
  111. {
  112. PyArrayObject *result = NULL;
  113. int nmin=0, nmax=0, dimension = 0, ret;
  114. double x=0, x1=0, *data=NULL;
  115. FUNC_MESS_BEGIN();
  116. if (!PyArg_ParseTuple(args, "idd", &nmax, &x, &x1)){
  117. return NULL;
  118. }
  119. if(nmin < 0){
  120. PyErr_SetString(PyExc_ImportError,
  121. "Nmin must be bigger than 0!");
  122. return NULL;
  123. }
  124. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  125. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  126. if(result == NULL)
  127. return NULL;
  128. data = (double *) result->data;
  129. ret = eval(nmax, x, x1, data);
  130. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  131. goto fail;
  132. FUNC_MESS_END();
  133. return (PyObject *) result;
  134. fail:
  135. Py_XDECREF(result);
  136. return NULL;
  137. }
  138. typedef int (array_p_evaluator_did_ad)( double x1, int nmax, double x2, double * result_array);
  139. static PyObject*
  140. PyGSL_sf_array_evaluator_did_ad(PyObject *self, PyObject *args, array_p_evaluator_did_ad * eval)
  141. {
  142. PyArrayObject *result = NULL;
  143. int nmin=0, nmax=0, dimension = 0, ret;
  144. double x=0, x1=0, *data=NULL;
  145. FUNC_MESS_BEGIN();
  146. if (!PyArg_ParseTuple(args, "did",&x, &nmax, &x1)){
  147. return NULL;
  148. }
  149. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  150. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  151. if(result == NULL)
  152. return NULL;
  153. data = (double *) result->data;
  154. ret = eval(nmax, x, x1, data);
  155. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  156. goto fail;
  157. FUNC_MESS_END();
  158. return (PyObject *) result;
  159. fail:
  160. Py_XDECREF(result);
  161. return NULL;
  162. }
  163. typedef int (array_p_evaluator_didd_add)(double , int , double , double , double * array, double*);
  164. static PyObject*
  165. PyGSL_sf_array_evaluator_didd_add(PyObject *self, PyObject *args, array_p_evaluator_didd_add * eval)
  166. {
  167. PyArrayObject *result = NULL;
  168. int nmin=0, nmax=0, dimension = 0, ret;
  169. double x=0, x1=0, *data=NULL, l_min, exponent;
  170. FUNC_MESS_BEGIN();
  171. if (!PyArg_ParseTuple(args, "didd", &l_min, &nmax, &x, &x1)){
  172. return NULL;
  173. }
  174. if(nmin < 0){
  175. PyErr_SetString(PyExc_ImportError,
  176. "Nmin must be bigger than 0!");
  177. return NULL;
  178. }
  179. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  180. result = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  181. if(result == NULL)
  182. return NULL;
  183. data = (double *) result->data;
  184. ret = eval(l_min, nmax, x, x1, data, &exponent);
  185. FUNC_MESS_END();
  186. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  187. goto fail;
  188. return Py_BuildValue("Od",result,exponent);
  189. fail:
  190. Py_XDECREF(result);
  191. return NULL;
  192. }
  193. typedef int (array_p_evaluator_didd_addadd)(double , int , double , double , double * array1, double*, double *array2, double*);
  194. static PyObject*
  195. PyGSL_sf_array_evaluator_didd_addadd(PyObject *self, PyObject *args, array_p_evaluator_didd_addadd * eval)
  196. {
  197. PyArrayObject *result1 = NULL,*result2 = NULL;
  198. int nmin=0, nmax=0, dimension = 0, ret;
  199. double x=0, x1=0, *data1=NULL, *data2=NULL, l_min, exponent1,exponent2;
  200. FUNC_MESS_BEGIN();
  201. if (!PyArg_ParseTuple(args, "didd", &l_min, &nmax, &x, &x1)){
  202. return NULL;
  203. }
  204. if(nmin < 0){
  205. PyErr_SetString(PyExc_ImportError,
  206. "Nmin must be bigger than 0!");
  207. return NULL;
  208. }
  209. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  210. result1 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  211. if(result1 == NULL)
  212. goto fail;
  213. result2 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  214. if(result2 == NULL)
  215. goto fail;
  216. data1 = (double *) result1->data;
  217. data2 = (double *) result2->data;
  218. ret = eval(l_min, nmax, x, x1, data1, &exponent1, data2, &exponent2);
  219. FUNC_MESS_END();
  220. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  221. goto fail;
  222. return Py_BuildValue("OdOd",result1,exponent1,result2,exponent2);
  223. fail:
  224. Py_XDECREF(result1);
  225. Py_XDECREF(result2);
  226. return NULL;
  227. }
  228. typedef int (array_p_evaluator_didd_adadadaddd)(double , int , double , double , double * a1, double * a2, double * a3, double * a4,
  229. double*, double*);
  230. static PyObject*
  231. PyGSL_sf_array_evaluator_didd_adadadaddd(PyObject *self, PyObject *args, array_p_evaluator_didd_adadadaddd * eval)
  232. {
  233. PyArrayObject *result1 = NULL,*result2 = NULL, *result3=NULL,*result4=NULL;
  234. int nmin=0, nmax=0, dimension = 0, ret;
  235. double x=0, x1=0, l_min, exponent1, exponent2;
  236. FUNC_MESS_BEGIN();
  237. if (!PyArg_ParseTuple(args, "didd", &l_min, &nmax, &x, &x1)){
  238. return NULL;
  239. }
  240. if(nmin < 0){
  241. PyErr_SetString(PyExc_ImportError,
  242. "Nmin must be bigger than 0!");
  243. return NULL;
  244. }
  245. dimension = nmax - nmin + 1; /* Goes form nmin to nmax, both included */
  246. result1 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  247. if(result1 == NULL)
  248. goto fail;
  249. result2 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  250. if(result2 == NULL)
  251. goto fail;
  252. result3 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  253. if(result3 == NULL)
  254. goto fail;
  255. result4 = (PyArrayObject *) PyArray_FromDims(1, &dimension, PyArray_DOUBLE);
  256. if(result4 == NULL)
  257. goto fail;
  258. ret = eval(l_min, nmax, x, x1, (double *) result1->data, (double *)result2->data,
  259. (double *) result3->data, (double *)result4->data, &exponent1, &exponent2);
  260. FUNC_MESS_END();
  261. if(PyGSL_ERROR_FLAG(ret) != GSL_SUCCESS)
  262. goto fail;
  263. return Py_BuildValue("OOOOdd",result1,result2,result3,result4,exponent1, exponent2);
  264. fail:
  265. Py_XDECREF(result1);
  266. Py_XDECREF(result2);
  267. Py_XDECREF(result3);
  268. Py_XDECREF(result4);
  269. return NULL;
  270. }
  271. #define SF_ARRAY(name, function) \
  272. static PyObject* sf_ ## name (PyObject *self, PyObject *args) \
  273. { \
  274. PyObject * tmp; \
  275. FUNC_MESS_BEGIN(); \
  276. tmp = PyGSL_sf_array_evaluator_ ## function (self, args, gsl_sf_ ## name); \
  277. if (tmp == NULL){ \
  278. PyGSL_add_traceback(module, __FILE__, __FUNCTION__, __LINE__); \
  279. } \
  280. FUNC_MESS_END(); \
  281. return tmp; \
  282. }
  283. SF_ARRAY(bessel_Jn_array, iid_ad);
  284. SF_ARRAY(bessel_Yn_array, iid_ad);
  285. SF_ARRAY(bessel_In_array, iid_ad);
  286. SF_ARRAY(bessel_Kn_array, iid_ad);
  287. SF_ARRAY(bessel_Kn_scaled_array, iid_ad);
  288. SF_ARRAY(bessel_jl_array, id_ad);
  289. SF_ARRAY(bessel_jl_steed_array, id_ad);
  290. SF_ARRAY(bessel_yl_array, id_ad);
  291. SF_ARRAY(bessel_il_scaled_array, id_ad);
  292. SF_ARRAY(bessel_kl_scaled_array, id_ad);
  293. SF_ARRAY(gegenpoly_array, idd_ad);
  294. SF_ARRAY(legendre_H3d_array, idd_ad);
  295. SF_ARRAY(coulomb_wave_F_array, didd_add);
  296. SF_ARRAY(coulomb_wave_sphF_array, didd_add);
  297. SF_ARRAY(coulomb_wave_FG_array, didd_addadd);
  298. SF_ARRAY(coulomb_wave_FGp_array, didd_adadadaddd);
  299. SF_ARRAY(coulomb_CL_array, did_ad);
  300. SF_ARRAY(legendre_Pl_array, id_ad);
  301. SF_ARRAY(legendre_Plm_array, legendre_iid_ad);
  302. SF_ARRAY(legendre_sphPlm_array, legendre_iid_ad);
  303. static PyMethodDef sf_array_functions[] = {
  304. {"bessel_Jn_array", (PyCFunction) sf_bessel_Jn_array, METH_VARARGS, NULL},
  305. {"bessel_Yn_array", (PyCFunction) sf_bessel_Yn_array, METH_VARARGS, NULL},
  306. {"bessel_In_array", (PyCFunction) sf_bessel_In_array, METH_VARARGS, NULL},
  307. {"bessel_Kn_array", (PyCFunction) sf_bessel_Kn_array, METH_VARARGS, NULL},
  308. {"bessel_Kn_scaled_array", (PyCFunction) sf_bessel_Kn_scaled_array, METH_VARARGS, NULL},
  309. {"bessel_jl_array", (PyCFunction) sf_bessel_jl_array, METH_VARARGS, NULL},
  310. {"bessel_jl_steed_array", (PyCFunction) sf_bessel_jl_steed_array, METH_VARARGS, NULL},
  311. {"bessel_yl_array", (PyCFunction) sf_bessel_yl_array, METH_VARARGS, NULL},
  312. {"bessel_il_scaled_array", (PyCFunction) sf_bessel_il_scaled_array, METH_VARARGS, NULL},
  313. {"bessel_kl_scaled_array", (PyCFunction) sf_bessel_kl_scaled_array, METH_VARARGS, NULL},
  314. {"gegenpoly_array", (PyCFunction) sf_gegenpoly_array, METH_VARARGS, NULL},
  315. {"legendre_H3d_array", (PyCFunction) sf_legendre_H3d_array, METH_VARARGS, NULL},
  316. {"coulomb_wave_F_array", (PyCFunction) sf_coulomb_wave_F_array, METH_VARARGS, NULL},
  317. {"coulomb_wave_sphF_array", (PyCFunction) sf_coulomb_wave_sphF_array, METH_VARARGS, NULL},
  318. {"coulomb_wave_FG_array", (PyCFunction) sf_coulomb_wave_FG_array, METH_VARARGS, NULL},
  319. {"coulomb_wave_FGp_array", (PyCFunction) sf_coulomb_wave_FGp_array, METH_VARARGS, NULL},
  320. {"coulomb_CL_array", (PyCFunction) sf_coulomb_CL_array, METH_VARARGS, NULL},
  321. {"legendre_Pl_array", (PyCFunction) sf_legendre_Pl_array, METH_VARARGS, NULL},
  322. {"legendre_Plm_array", (PyCFunction) sf_legendre_Plm_array, METH_VARARGS, NULL},
  323. {"legendre_sphPlm_array", (PyCFunction) sf_legendre_sphPlm_array, METH_VARARGS, NULL},
  324. {NULL, NULL, 0}
  325. };
  326. #ifndef IMPORTALL
  327. DL_EXPORT(void) initsfarray(void)
  328. {
  329. module = Py_InitModule("sfarray", sf_array_functions);
  330. import_array();
  331. init_pygsl();
  332. }
  333. #endif