ARTS  2.3.1285(git:92a29ea9-dirty)
fastem.h
Go to the documentation of this file.
1 /* Copyright (C) 2002-2012
2  Sreerekha Ravi <rekha@sat.physik.uni-bremen.de>
3  Stefan Buehler <sbuehler@ltu.se>
4 
5  This program is free software; you can redistribute it and/or modify it
6  under the terms of the GNU General Public License as published by the
7  Free Software Foundation; either version 2, or (at your option) any
8  later version.
9 
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  GNU General Public License for more details.
14 
15  You should have received a copy of the GNU General Public License
16  along with this program; if not, write to the Free Software
17  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
18  USA.
19 */
20 
30 #ifndef fastem_h
31 #define fastem_h
32 
33 #include "matpackI.h"
34 
35 void fastem( // Output:
36  Vector &emissivity,
37  Vector &reflectivity,
38  // Input:
39  const Numeric frequency,
40  const Numeric za,
41  const Numeric temperature,
42  const Numeric salinity,
43  const Numeric wind_speed,
44  const Numeric transmittance,
45  const Numeric rel_azimuth,
46  const Index fastem_version);
47 
48 #endif //fastem_h
INDEX Index
The type to use for all integer numbers and indices.
Definition: matpack.h:39
The Vector class.
Definition: matpackI.h:860
NUMERIC Numeric
The type to use for all floating point numbers.
Definition: matpack.h:33
void fastem(Vector &emissivity, Vector &reflectivity, const Numeric frequency, const Numeric za, const Numeric temperature, const Numeric salinity, const Numeric wind_speed, const Numeric transmittance, const Numeric rel_azimuth, const Index fastem_version)
Calculate the surface emissivity using FASTEM.
Definition: fastem.cc:107
Implementation of Matrix, Vector, and such stuff.