1FERMI_DIRAC(3) User Contributed Perl Documentation FERMI_DIRAC(3)
2
3
4
6 PDL::GSLSF::FERMI_DIRAC - PDL interface to GSL Special Functions
7
9 This is an interface to the Special Function package present in the GNU
10 Scientific Library. Please note that:
11
12 Complete Fermi-Dirac Integrals:
13
14 F_j(x) := 1/Gamma[j+1] Integral[ t^j /(Exp[t-x] + 1), {t,0,Infinity}]
15
16 Incomplete Fermi-Dirac Integrals:
17
18 F_j(x,b) := 1/Gamma[j+1] Integral[ t^j /(Exp[t-x] + 1), {t,b,Infinity}]
19
23 gsl_sf_fermi_dirac_int
24 Signature: (double x(); double [o]y(); double [o]e(); int j)
25
26 Complete integral F_j(x) for integer j
27
28 gsl_sf_fermi_dirac_int does not process bad values. It will set the
29 bad-value flag of all output piddles if the flag is set for any of the
30 input piddles.
31
32 gsl_sf_fermi_dirac_mhalf
33 Signature: (double x(); double [o]y(); double [o]e())
34
35 Complete integral F_{-1/2}(x)
36
37 gsl_sf_fermi_dirac_mhalf does not process bad values. It will set the
38 bad-value flag of all output piddles if the flag is set for any of the
39 input piddles.
40
41 gsl_sf_fermi_dirac_half
42 Signature: (double x(); double [o]y(); double [o]e())
43
44 Complete integral F_{1/2}(x)
45
46 gsl_sf_fermi_dirac_half does not process bad values. It will set the
47 bad-value flag of all output piddles if the flag is set for any of the
48 input piddles.
49
50 gsl_sf_fermi_dirac_3half
51 Signature: (double x(); double [o]y(); double [o]e())
52
53 Complete integral F_{3/2}(x)
54
55 gsl_sf_fermi_dirac_3half does not process bad values. It will set the
56 bad-value flag of all output piddles if the flag is set for any of the
57 input piddles.
58
59 gsl_sf_fermi_dirac_inc_0
60 Signature: (double x(); double [o]y(); double [o]e(); double b)
61
62 Incomplete integral F_0(x,b) = ln(1 + e^(b-x)) - (b-x)
63
64 gsl_sf_fermi_dirac_inc_0 does not process bad values. It will set the
65 bad-value flag of all output piddles if the flag is set for any of the
66 input piddles.
67
69 This file copyright (C) 1999 Christian Pellegrin
70 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
71 You are allowed to redistribute this software / documentation under
72 certain conditions. For details, see the file COPYING in the PDL
73 distribution. If this file is separated from the PDL distribution, the
74 copyright notice should be included in the file.
75
76 The GSL SF modules were written by G. Jungman.
77
78
79
80perl v5.12.3 2011-03-31 FERMI_DIRAC(3)