fix doxygen/markdown syntax

Former-commit-id: b6a9e3db7002597c7c8698fad1dee0d1b5b0341f
This commit is contained in:
Marek Nečada 2019-06-12 14:44:27 +03:00
parent 9a8609e676
commit 8bd1ad1898
1 changed files with 6 additions and 6 deletions

View File

@ -6,10 +6,10 @@ in several steps (assuming the T-matrices have already
been obtained using `scuff-tmatrix` or can be obtained been obtained using `scuff-tmatrix` or can be obtained
from Lorenz-Mie solution (spherical particles)): from Lorenz-Mie solution (spherical particles)):
1. Sampling the $k, \omega$ space. 1. Sampling the *k*, *ω* space.
2. Pre-calculating the 2. Pre-calculating the
Ewald-summed translation operators. Ewald-summed translation operators.
3. For each $k, \omega$ pair, build the LHS operator 3. For each *k*, *ω* pair, build the LHS operator
for the scattering problem (TODO reference), optionally decomposed for the scattering problem (TODO reference), optionally decomposed
into suitable irreducible representation subspaces. into suitable irreducible representation subspaces.
4. Evaluating the singular values and finding their minima. 4. Evaluating the singular values and finding their minima.
@ -31,15 +31,15 @@ manually like this:
c99 -o ew_gen_kin -Wall -I ../.. -I ../../amos/ -O2 -ggdb -DQPMS_VECTORS_NICE_TRANSFORMATIONS -DLATTICESUMS32 2dlattice_ewald.c ../translations.c ../ewald.c ../ewaldsf.c ../gaunt.c ../lattices2d.c ../latticegens.c ../bessel.c -lgsl -lm -lblas ../../amos/libamos.a -lgfortran ../error.c c99 -o ew_gen_kin -Wall -I ../.. -I ../../amos/ -O2 -ggdb -DQPMS_VECTORS_NICE_TRANSFORMATIONS -DLATTICESUMS32 2dlattice_ewald.c ../translations.c ../ewald.c ../ewaldsf.c ../gaunt.c ../lattices2d.c ../latticegens.c ../bessel.c -lgsl -lm -lblas ../../amos/libamos.a -lgfortran ../error.c
``` ```
Step 1: Sampling the $k, \omega$ space Step 1: Sampling the *k*, *ω* space
-------------------------------------- --------------------------------------
`ew_gen_kin` expects a list of $(k_x, k_y)$ `ew_gen_kin` expects a list of (*k_x*, *k_y*)
pairs on standard input (separated by whitespaces), pairs on standard input (separated by whitespaces),
the rest is specified via command line arguments. the rest is specified via command line arguments.
So if we want to examine the line between the Г point and the point So if we want to examine the line between the Г point and the point
$k = (0, 1\cdot10^5\mathrm{m}^{-1})$, we can generate an input \f$ k = (0, 10^5\,\mathrm{m}^{-1}) \f$, we can generate an input
running running
``` ```
for ky in $(seq 0 1e3 1e5); do for ky in $(seq 0 1e3 1e5); do
@ -47,7 +47,7 @@ running
done done
``` ```
It also make sense to pre-generate the list of $\omega$ values, It also make sense to pre-generate the list of *ω* values,
e.g. e.g.
``` ```
seq 6.900 0.002 7.3 | sed -e 's/,/./g' > omegalist seq 6.900 0.002 7.3 | sed -e 's/,/./g' > omegalist