ReFRACtor
scipy_constrained_test.py
Go to the documentation of this file.
1 from __future__ import print_function
2 from nose.tools import *
3 from full_physics import *
4 import scipy.optimize
5 from nose.plugins.skip import Skip, SkipTest
6 
8  '''This test is an example of using the scipy.optimize package. We
9  don't regularly run this, and it depends on a hardcoded run. But
10  leave this in place as an example of how to set this up.'''
11  raise SkipTest
12  config_file = "/home/smyth/Local/Level2PythonBuild/build/oco2_sounding_1_test/oco_oco2_sounding_1_test.config"
13  lua_config = "/home/smyth/Local/Level2PythonBuild/build/oco2_sounding_1_test/config_diff_solv.lua"
14  l2run = L2Run.create_from_existing_run(config_file, lua_config=lua_config)
15  opt_problem = l2run.lua_config.opt_problem
16 
17  def res(x, prob):
18  print("Doing res")
19  print(x)
20  # Note prob is smart, so if residual_x and jacobian_x is called
21  # with the same x, it doesn't calculate twice
22  return prob.residual_x(x)
23 
24  def res_jac(x, prob):
25  print("Doing res_jac")
26  print(x)
27  # Note prob is smart, so if residual_x and jacobian_x is called
28  # with the same x, it doesn't calculate twice
29  return prob.jacobian_x(x)
30  bounds = np.empty((opt_problem.parameter_size, 2))
31  bounds[:,0] = -np.inf
32  bounds[:,1] = np.inf
33  bounds[0:20,0] = 0 # XCO2 can't go below zero
34  bounds[23:(23+4*3):3, 0] = 1e-8 # Aerosol can't go below 1e-8
35  # From the configuration, for GSL. These don't exactly map to
36  # scipy, but isn't far off
37  max_cost_function_calls = 20
38  dx_tol_rel = 1e-5
39  g_tol_abs = 1e-5
40  scipy.optimize.least_squares(res, opt_problem.parameters, jac=res_jac,
41  bounds=(bounds[:,0],bounds[:,1]),
42  max_nfev=max_cost_function_calls,
43  xtol=dx_tol_rel,
44  gtol=g_tol_abs,
45  verbose=2, args=(opt_problem,))
46 
47 

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