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
22 gsl_sf_fermi_dirac_int
23 Signature: (double x(); double [o]y(); double [o]e(); int j)
24
25 Complete integral F_j(x) for integer j
26
27 gsl_sf_fermi_dirac_int does not process bad values. It will set the
28 bad-value flag of all output piddles if the flag is set for any of the
29 input piddles.
30
31 gsl_sf_fermi_dirac_mhalf
32 Signature: (double x(); double [o]y(); double [o]e())
33
34 Complete integral F_{-1/2}(x)
35
36 gsl_sf_fermi_dirac_mhalf does not process bad values. It will set the
37 bad-value flag of all output piddles if the flag is set for any of the
38 input piddles.
39
40 gsl_sf_fermi_dirac_half
41 Signature: (double x(); double [o]y(); double [o]e())
42
43 Complete integral F_{1/2}(x)
44
45 gsl_sf_fermi_dirac_half does not process bad values. It will set the
46 bad-value flag of all output piddles if the flag is set for any of the
47 input piddles.
48
49 gsl_sf_fermi_dirac_3half
50 Signature: (double x(); double [o]y(); double [o]e())
51
52 Complete integral F_{3/2}(x)
53
54 gsl_sf_fermi_dirac_3half does not process bad values. It will set the
55 bad-value flag of all output piddles if the flag is set for any of the
56 input piddles.
57
58 gsl_sf_fermi_dirac_inc_0
59 Signature: (double x(); double [o]y(); double [o]e(); double b)
60
61 Incomplete integral F_0(x,b) = ln(1 + e^(b-x)) - (b-x)
62
63 gsl_sf_fermi_dirac_inc_0 does not process bad values. It will set the
64 bad-value flag of all output piddles if the flag is set for any of the
65 input piddles.
66
68 This file copyright (C) 1999 Christian Pellegrin
69 <chri@infis.univ.trieste.it> All rights reserved. There is no warranty.
70 You are allowed to redistribute this software / documentation under
71 certain conditions. For details, see the file COPYING in the PDL
72 distribution. If this file is separated from the PDL distribution, the
73 copyright notice should be included in the file.
74
75 The GSL SF modules were written by G. Jungman.
76
77
78
79perl v5.32.0 2020-09-17 FERMI_DIRAC(3)