1 from __future__
import print_function
3 from full_physics
import *
5 from nose.plugins.skip
import Skip, SkipTest
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.''' 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
22 return prob.residual_x(x)
25 print(
"Doing res_jac")
29 return prob.jacobian_x(x)
30 bounds = np.empty((opt_problem.parameter_size, 2))
34 bounds[23:(23+4*3):3, 0] = 1e-8
37 max_cost_function_calls = 20
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,
45 verbose=2, args=(opt_problem,))
def scipy_constrained_test()