


SETUPPARAMS - setup the solution parameters
setup some parameters to be passed to the core solution
Usage:
params=SetupParams(md)

0001 function params=SetupParams(md) 0002 %SETUPPARAMS - setup the solution parameters 0003 % 0004 % setup some parameters to be passed to the core solution 0005 % 0006 % Usage: 0007 % params=SetupParams(md) 0008 0009 params.sparsity=md.sparsity; 0010 params.solver_type=md.solver_type; 0011 params.yts=md.yts; 0012 params.eps_rel=md.eps_rel; 0013 params.eps_abs=md.eps_abs; 0014 params.viscosity_overshoot=md.viscosity_overshoot; 0015 params.debug=md.debug; 0016 params.min_thermal_constraints=md.min_thermal_constraints; 0017 params.element_debug=md.element_debug; 0018 params.element_debugid=md.element_debugid; 0019