ADAPTOR SET OPTIONS Create/alter ODE OPTIONS structure.
OPTIONS = adaptorSetOptions('NAME1',VALUE1,'NAME2',VALUE2,...) creates an integrator options structure OPTIONS in which the named properties have the specified values. Any unspecified properties have default values. It is sufficient to type only the leading characters that uniquely identify the property. Case is ignored for property names.
OPTIONS = adaptor Set Options(OLDOPTS,'NAME1',VALUE1,...) alters an existing options structure OLDOPTS.
OPTIONS = adaptor Set Options(OLDOPTS,NEWOPTS) combines an existing options structure OLDOPTS with a new options structure NEWOPTS. Any new properties overwrite corresponding old properties.
adaptor Set Options with no input arguments displays all property names and their possible values.
Adaptor Set Options PROPERTIES
stepSize - This is the stepSize for the integrator in seconds.
coefD - This is the coefficient of drag for the spacecraft in orbit.
cr - Coefficient of reflectivity for the spacecraft in orbit.
mass - The mass of the spacecraft in orbit in kilograms.
cArea - The cross-sectional area of the spacecraft in orbit in m2.
mjd_utc - The Modified Julian Date in UTC time.
See also ODEGET, ODE45, ODE23, ODE113, ODE15I, ODE15S, ODE23S, ODE23T, ODE23TB, FUNCTION_HANDLE, ESTSET, ESTGET, [AdaptorGetOptions]
NOTE:
Some of the properties available through adaptorSetOptions have changed in MATLAB 6.0. Although we still support the v5 properties when used with the v5 syntax of the ODE solvers, any new functionality will be available only with the new syntax. To see the properties available in v5, type in the command line more on, type adaptorSetOptions, more off
NOTE:
This portion describes the properties available in v5
Return to: [MatlabJatAdaptor]