~jrjohansson/qutip/master

« back to all changes in this revision

Viewing changes to qutip/clebsch.py

  • Committer: Paul Nation
  • Date: 2011-04-21 04:46:56 UTC
  • Revision ID: git-v1:dd4c966b490aa468dfbd28cef66694df4bf235c8

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#This file is part of QuTIP.
 
2
#
 
3
#    QuTIP is free software: you can redistribute it and/or modify
 
4
#    it under the terms of the GNU General Public License as published by
 
5
#    the Free Software Foundation, either version 3 of the License, or
 
6
#   (at your option) any later version.
 
7
#
 
8
#    QuTIP is distributed in the hope that it will be useful,
 
9
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
#    GNU General Public License for more details.
 
12
#
 
13
#    You should have received a copy of the GNU General Public License
 
14
#    along with QuTIP.  If not, see <http://www.gnu.org/licenses/>.
 
15
#
 
16
# Copyright (C) 2011, Paul D. Nation & Robert J. Johansson
 
17
#
 
18
###########################################################################
 
19
 
 
20
from scipy import *
 
21
from math import factorial
 
22
#  C=clebsch(j1,j2,j3,m1,m2,m3) calculates the Clebsch-Gordon coefficient
 
23
#for coupling (j1,m1) and (j2,m2) to give (j3,m3).
 
24
def clebsch(j1,j2,j3,m1,m2,m3):
 
25
        if m3!=m1+m2:
 
26
                return 0
 
27
        vmin=max([-j1+j2+m3,-j1+m1,0])
 
28
        vmax=min([j2+j3+m1,j3-j1+j2,j3+m3])
 
29
        C=sqrt(2.0*j3+1.0)*factorial(j3+j1-j2)*factorial(j3-j1+j2)*factorial(j1+j2-j3)*factorial(j3+m3)*factorial(j3-m3)/factorial(j1+j2+j3+1)/factorial(j1-m1)/factorial(j1+m1)/factorial(j2-m2)/factorial(j2+m2))
 
30
        S=0
 
31
        for v in range(vmin,vmax+1):
 
32
                S=S+(-1.0)**(v+j2+m2)/factorial(v)*factorial(j2+j3+m1-v)*factorial(j1-m1+v)/factorial(j3-j1+j2-v)/factorial(j3+m3-v)/factorial(v+j1-j2-m3)
 
33
        C=C*S
 
34
        return C
 
 
b'\\ No newline at end of file'