ARTS  2.2.66
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  VectorView surface_emiss,
37  // Input:
38  const Numeric& surface_temp,
39  ConstVectorView surface_wind,
40  ConstVectorView surface_fastem_constants,
41  const Numeric& freq
42  //const Index& f_index,
43  //const Index& stokes_dim
44  );
45 
46 #endif //fastem_h
The VectorView class.
Definition: matpackI.h:372
NUMERIC Numeric
The type to use for all floating point numbers.
Definition: matpack.h:29
A constant view of a Vector.
Definition: matpackI.h:292
void fastem(VectorView surface_emiss, const Numeric &surface_temp, ConstVectorView surface_wind, ConstVectorView surface_fastem_constants, const Numeric &freq)
Calculate the surface emissivity using Fastem model.
Definition: fastem.cc:60