Skip to content

Commit b46978d

Browse files
committed
update docs
1 parent 35dbcc5 commit b46978d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Exact function only for demonstration, some of them can be `Real` arguments, lik
5757
- `nineJ(j1, j2, j3, j4, j5, j6, j7, j8, j9)`, Wigner 9j-symbol, `Real` arguments.
5858
- `norm9J(j2, j3, j4, j5, j5, j6, j7, j8, j9)`, normalized 9j-symbol, `Real` arguments.
5959
- `lsjj(l1, l2, j1, j2, L, S, J)`, LS-coupling to jj-coupling transform coefficient. It actually equals to a normalized 9j-symbol, but easy to use and faster. `j1, j2` can be `Real`.
60-
- `Moshinsky(N, L, n, l, n1, l1, n2, l2, Λ)`, Moshinsky brakets, `Integer` arguments.
60+
- `Moshinsky(N, L, n, l, n1, l1, n2, l2, Λ, D)`, Moshinsky brakets, `Integer` arguments, except `D` is a rational (default is `1`).
6161

6262
#### Float functions
6363

README_zh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ julia> f6j(6,6,6,6,6,6)
5757
- `nineJ(j1, j2, j3, j4, j5, j6, j7, j8, j9)`, Wigner 9j系数,参数均为`Real`
5858
- `norm9J(j2, j3, j4, j5, j5, j6, j7, j8, j9)`, normalized 9j系数,参数均为`Real`
5959
- `lsjj(l1, l2, j1, j2, L, S, J)`, LS耦合到jj耦合的转换系数,它实际上等于一个normalized 9j系数,但更易于使用且更快。`j1, j2``Real`,其余必须是整数。
60-
- `Moshinsky(N, L, n, l, n1, l1, n2, l2, Λ)`, Moshinsky括号,参数均为`Real`
60+
- `Moshinsky(N, L, n, l, n1, l1, n2, l2, Λ, D)`, Moshinsky括号,量子数都是整数,`D`是有理数,默认为`1`
6161

6262
#### 浮点数函数
6363

@@ -73,7 +73,7 @@ julia> f6j(6,6,6,6,6,6)
7373
- `f9j(dj1, dj2, dj3, dj4, dj5, dj6, dj7, dj8, dj9)`, Wigner 9j系数。
7474
- `fnorm9j(dj1, dj2, dj3, dj4, dj5, dj6, dj7, dj8, dj9)`, normalized 9j系数。
7575
- `flsjj(l1, l2, dj1, dj2, L, S, J)`, LS耦合到jj耦合的转换系数。
76-
- `fMoshinsky(N, L, n, l, n1, l1, n2, l2, Λ)`, oshinsky括号
76+
- `fMoshinsky(N, L, n, l, n1, l1, n2, l2, Λ)`, oshinsky括号
7777
- `dfunc(dj, dm1, dm2, β)`, Wigner d 函数。
7878

7979

src/WignerSymbols.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ end
767767

768768

769769
@doc raw"""
770-
Moshinsky(N::Integer, L::Integer, n::Integer, l::Integer, n1::Integer, l1::Integer, n2::Integer, l2::Integer, Λ::Integer)
770+
Moshinsky(N::Integer, L::Integer, n::Integer, l::Integer, n1::Integer, l1::Integer, n2::Integer, l2::Integer, Λ::Integer, D::Union{Rational,Integer}=1)
771771
Moshinsky bracket,Ref: Buck et al. Nuc. Phys. A 600 (1996) 387-402.
772772
This function is designed for demonstration the exact result,
773773
It only calculate the case of ``\tan(\beta) = \sqrt{m_1\omega_1/m_2\omega_2} = 1``.

0 commit comments

Comments
 (0)