ARTS  2.3.1285(git:92a29ea9-dirty)
tmatrix.h
Go to the documentation of this file.
1 /* Copyright (C) 2013 Oliver Lemke
2  *
3  * This program 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  * This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17 
26 #ifndef tmatrix_h
27 #define tmatrix_h
28 
29 #include "messages.h"
30 #include "optproperties.h"
31 
55  ConstMatrixView ref_index_real,
56  ConstMatrixView ref_index_imag,
57  const Numeric equiv_radius = 200,
58  const Index np = -1,
59  const Numeric axial_ratio = 1.000001,
60  const Numeric precision = 0.001,
61  const Index ndgs = 2,
62  const Index robust = 0,
63  const Index quiet = 1);
64 
73 void tmatrix_ampld_test(const Verbosity& verbosity);
74 
83 void tmatrix_tmd_test(const Verbosity& verbosity);
84 
129 void calc_ssp_random_test(const Verbosity& verbosity);
130 
177 void calc_ssp_fixed_test(const Verbosity& verbosity);
178 
179 #endif // tmatrix_h
INDEX Index
The type to use for all integer numbers and indices.
Definition: matpack.h:39
void tmatrix_ampld_test(const Verbosity &verbosity)
T-Matrix validation test.
Definition: tmatrix.cc:1297
#define precision
Definition: logic.cc:43
Declarations having to do with the four output streams.
void tmatrix_tmd_test(const Verbosity &verbosity)
T-Matrix validation test.
Definition: tmatrix.cc:1361
NUMERIC Numeric
The type to use for all floating point numbers.
Definition: matpack.h:33
A constant view of a Matrix.
Definition: matpackI.h:982
void calc_ssp_random_test(const Verbosity &verbosity)
Single scattering properties calculation for randomly oriented particles.
Definition: tmatrix.cc:1454
void calc_ssp_fixed_test(const Verbosity &verbosity)
Single scattering properties calculation for particles with fixed orientation.
Definition: tmatrix.cc:1507
Scattering database structure and functions.
void calcSingleScatteringDataProperties(SingleScatteringData &ssd, ConstMatrixView ref_index_real, ConstMatrixView ref_index_imag, const Numeric equiv_radius=200, const Index np=-1, const Numeric axial_ratio=1.000001, const Numeric precision=0.001, const Index ndgs=2, const Index robust=0, const Index quiet=1)
Calculate SingleScatteringData properties.
Definition: tmatrix.cc:979