Skip to content

Commit 3bb708c

Browse files
committed
DOC: Fix typo of Bessel function order
1 parent b22869b commit 3bb708c

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

docs/source/Tutorial/dynamic/gfunc.rst

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,14 +114,14 @@ Python中计算动态格林函数的主函数为 :func:`compute_grn() <pygrt.pym
114114

115115
公式来自 :ref:`初稿 <yao_init_manuscripts>` (5.6.22)式,其中阶数 :math:`m=0,1,2`。核函数 :math:`q_m,w_m,v_m` 根据广义反射透射系数矩阵法求得。为了方便程序实现,根据积分形式,我们对待求积分进行如下分类,其中每一阶都分为4类( :math:`p=0,1,2,3` ),除了0阶只需两类,此时 :math:`v_0=0` :
116116

117-
+ :math:`m=0`
117+
+ :math:`m=0` [#]_
118118

119119
.. math::
120120
121121
\left\{
122122
\begin{aligned}
123-
p=0 & \rightarrow - \int q_0(k, \omega) J_0(kr)kdk \\
124-
p=2 & \rightarrow \int w_0(k, \omega) J_1(kr)kdk
123+
p=0 & \rightarrow - \int q_0(k, \omega) J_1(kr)kdk \\
124+
p=2 & \rightarrow \int w_0(k, \omega) J_0(kr)kdk
125125
\end{aligned}
126126
\right.
127127
@@ -142,6 +142,8 @@ Python中计算动态格林函数的主函数为 :func:`compute_grn() <pygrt.pym
142142
143143
以上每个积分都形成 :math:`\int_0^\infty F(k, \omega)J_m(kr)kdk` 的形式,便可逐个使用离散波数积分(或Filon积分、峰谷平均法等)求解每个积分。
144144

145+
.. [#] 感谢席超强博士 `@xichaoqiang <https://github.com/xichaoqiang>`_ 的订正。
146+
145147
146148
.. _grn_types:
147149

docs/source/_static/my_theme.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,12 @@
2727
/* 改变左上角项目名的颜色 */
2828
.wy-side-nav-search .project {
2929
color: #000000 !important;
30+
}
31+
32+
/* 脚标增加中括号 */
33+
.footnote-reference::before {
34+
content: "[";
35+
}
36+
.footnote-reference::after {
37+
content: "]";
3038
}

0 commit comments

Comments
 (0)