ReFRACtor
ground_fixture.h
Go to the documentation of this file.
1 #include "ground_lambertian.h"
2 #include "ground_coxmunk.h"
3 #include "ground_brdf.h"
5 #include "unit_test_support.h"
6 
7 using namespace FullPhysics;
8 using namespace blitz;
9 
10 class GroundFixture : public GlobalFixture {
11 public:
16 
18  // Lambertian
19  Array<double, 2> params(3, 2);
20  params(0, 0) = 0.5;
21  params(0, 1) = 1e-3;
22 
23  params(1, 0) = 0.5;
24  params(1, 1) = 1e-3;
25 
26  params(2, 0) = 0.5;
27  params(2, 1) = 1e-3;
28 
29  Array<bool, 2> flags(3, 2);
30  flags = true;
31 
32  blitz::Array<double, 1> ref_points(3);
33  ref_points(0) = 0.77;
34  ref_points(1) = 1.615;
35  ref_points(2) = 2.06;
36  ArrayWithUnit<double, 1> ref_points_w_unit(ref_points, units::micron);
37 
38  std::vector<std::string> band_name;
39  band_name.push_back("ABO2");
40  band_name.push_back("WCO2");
41  band_name.push_back("SCO2");
42 
43  lambertian.reset(new GroundLambertian(params, flags, ref_points_w_unit, band_name));
44 
45  // Coxmunk
46  Array<double, 1> refr_index(3);
47  refr_index(0) = 1.331;
48  refr_index(1) = 1.332;
49  refr_index(2) = 1.334;
50 
51  coxmunk.reset(new GroundCoxmunk(7.1, false, refr_index));
52 
53  // BRDF (Rahman + Breon)
54  Array<double, 2> brdf_coeffs(3, 7);
55  brdf_coeffs =
56  // weight_intercept, weight_slope, rahman_factor, hotspot, asymmetry, anisotropy, breon_factor
57  0.1, 0.4, 0.7, 1.0, 1.3, 1.6, 1.9,
58  0.2, 0.5, 0.8, 1.1, 1.4, 1.7, 2.0,
59  0.3, 0.6, 0.9, 1.2, 1.5, 1.8, 2.1;
60  Array<bool, 2> flag(brdf_coeffs.shape());
61  flag = true;
62 
63  brdf_veg.reset(new GroundBrdfVeg(brdf_coeffs, flag, ref_points_w_unit, band_name));
64  brdf_soil.reset(new GroundBrdfSoil(brdf_coeffs, flag, ref_points_w_unit, band_name));
65 
66  }
67 };
68 
This is a global fixture that is available to all unit tests.
This class implements a Lambertian albedo as a ground type.
boost::shared_ptr< GroundBrdfSoil > brdf_soil
boost::shared_ptr< GroundCoxmunk > coxmunk
boost::shared_ptr< GroundLambertian > lambertian
const Unit micron("micron", 1e-6 *m)
Apply value function to a blitz array.
boost::shared_ptr< GroundBrdfVeg > brdf_veg
Contains classes to abstract away details in various Spurr Radiative Transfer software.
Definition: doxygen_python.h:1
This class implements a Coxmunk ground type.

Copyright © 2017, California Institute of Technology.
ALL RIGHTS RESERVED.
U.S. Government Sponsorship acknowledged.
Generated Fri Aug 24 2018 15:44:08